diff --git a/.circleci/config.yml b/.circleci/config.yml
index 60d386e53df..6c155ea9868 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -1,3 +1,4 @@
+
version: 2
jobs:
diff --git a/.github/workflows/cache_vcpkg.yml b/.github/workflows/cache_vcpkg.yml
deleted file mode 100644
index 13f544ba1f8..00000000000
--- a/.github/workflows/cache_vcpkg.yml
+++ /dev/null
@@ -1,109 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-name: Crossbow Cache
-
-on:
- workflow_dispatch:
- inputs:
- vcpkg-version:
- description: 'VCPKG Version to use in building the cache.'
- required: true
- default: ''
- arrow-repo:
- description: 'Repository to checkout arrow from.'
- required: true
- default: 'apache/arrow'
- arrow-ref:
- description: 'Ref to checkout from arrow-repo.'
- required: true
- default: 'main'
- # perhaps daily one for keeping the cache warm
- push:
- paths:
- - '.github/workflows/cache_vcpkg.yml'
- schedule:
- - cron: |
- 0 12 * * *
-
-env:
- VCPKG_ROOT: ${{ github.workspace }}/vcpkg
- VCPKG_OVERLAY_TRIPLETS: ${{ github.workspace }}/arrow/ci/vcpkg
- VCPKG_DEFAULT_TRIPLET: amd64-osx-static-release
- VCPKG_FEATURE_FLAGS: "manifests"
-
-jobs:
- vcpkg:
- name: Cache Vcpkg Packages
- runs-on: macos-latest
- strategy:
- fail-fast: false
- matrix:
- macos_version:
- - "10.9"
- - "10.13"
- env:
- MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos_version }}
- steps:
- - name: Checkout Arrow
- uses: actions/checkout@v3
- with:
- repository: ${{ github.event.inputs.arrow-repo || 'apache/arrow'}}
- path: arrow
- ref: ${{ github.event.inputs.arrow-ref || 'main'}}
- - name: Retrieve VCPKG version from arrow/.env
- shell: bash
- run: |
- if [ -z "${{ github.event.inputs.vcpkg-version }}" ]; then
- vcpkg_version=$(cat "arrow/.env" | grep "VCPKG" | cut -d "=" -f2 | tr -d '"')
- else
- vcpkg_version="${{ github.event.inputs.vcpkg-version }}"
- fi
- echo "VCPKG_VERSION=$vcpkg_version" >> $GITHUB_ENV
-
- - name: Install System Dependencies
- run: brew install bison coreutils ninja cmake
-
- - uses: actions/cache@v2
- id: vcpkg-cache
- with:
- path: vcpkg
- key: vcpkg-${{ matrix.macos_version }}-${{ env.VCPKG_VERSION }}-${{ hashFiles('arrow/ci/vcpkg/vcpkg.json', 'arrow/ci/vcpkg/*.patch', 'arrow/ci/vcpkg/*osx*.cmake') }}-1
-
- - name: Install Vcpkg
- shell: bash
- run: |
- [ -d "vcpkg" ] || arrow/ci/scripts/install_vcpkg.sh $VCPKG_ROOT $VCPKG_VERSION
-
- - name: Add Vcpkg to PATH
- shell: bash
- run: echo ${VCPKG_ROOT} >> $GITHUB_PATH
-
- # workaround for https://github.com/apache/arrow/pull/11569#issuecomment-979592053
- - name: Install OpenSSL
- run: vcpkg install openssl
-
- - name: Install Packages
- run: |
- vcpkg install \
- --x-manifest-root=arrow/ci/vcpkg/ \
- --x-install-root=$VCPKG_ROOT/installed \
- --x-no-default-features \
- --x-feature=flight \
- --x-feature=gcs \
- --x-feature=parquet \
- --x-feature=json
diff --git a/.github/workflows/nightly_dashboard.yml b/.github/workflows/nightly_dashboard.yml
deleted file mode 100644
index dbb4bfd0994..00000000000
--- a/.github/workflows/nightly_dashboard.yml
+++ /dev/null
@@ -1,93 +0,0 @@
-name: Generate Nightly Dashboard
-
-concurrency:
- group: ${{ github.workflow }}
- cancel-in-progress: true
-
-on:
- workflow_dispatch:
- pull_request:
- paths:
- - "csv_reports/*.csv"
- - ".github/workflows/nightly_dashboard.yml"
- - "crossbow-nightly-report/crossbow-nightly-report.qmd"
- push:
- branches: main
- paths:
- - "csv_reports/*.csv"
- - ".github/workflows/nightly_dashboard.yml"
- - "crossbow-nightly-report/crossbow-nightly-report.qmd"
-
-jobs:
- build:
- runs-on: ubuntu-20.04
- steps:
-
- - uses: actions/checkout@v3
- with:
- repository: apache/arrow
- path: arrow
-
- - uses: actions/checkout@v3
- with:
- path: crossbow
-
- - name: Set up Python
- uses: actions/setup-python@v4
- with:
- cache: pip
- python-version: 3.11
-
- - name: Generate List of Crossbow Tasks
- run: |
- python -m pip install -e arrow/dev/archery[crossbow]
- archery crossbow check-config > crossbow/all.yml
-
- - name: Setup Quarto
- uses: quarto-dev/quarto-actions/setup@v2
- with:
- version: '1.3.450'
-
- - uses: r-lib/actions/setup-r@v2
- with:
- r-version: '4.3.1'
- use-public-rspm: true
-
- # Needed due to https://github.com/r-lib/actions/issues/618
- - name: Link renv.lock
- run: ln -sf 'crossbow/crossbow-nightly-report/renv.lock'
-
- - name: Setup renv
- uses: r-lib/actions/setup-renv@v2
- env:
- # This is set by setup-r
- RENV_CONFIG_REPOS_OVERRIDE: ""
- with:
- cache-version: 1
- - name: Build Report
- uses: quarto-dev/quarto-actions/render@v2
- env:
- CROSSBOW_LOOKBACK_WINDOW: 120
- with:
- to: html
- path: 'crossbow/crossbow-nightly-report/crossbow-nightly-report.qmd'
-
- - name: Upload Rendered Dashboard
- if: github.event_name == 'pull_request'
- uses: actions/upload-artifact@v3
- with:
- name: dashboard
- path: |
- crossbow/crossbow-nightly-report/crossbow-nightly-report.html
- crossbow/all.yml
- - name: Upload result
- if: github.event_name == 'push'
- working-directory: crossbow
- shell: bash
- env:
- AWS_ACCESS_KEY_ID: ${{ secrets.CROSSBOW_DOCS_AWS_ACCESS_KEY_ID }}
- AWS_SECRET_ACCESS_KEY: ${{ secrets.CROSSBOW_DOCS_AWS_SECRET_ACCESS_KEY }}
- AWS_DEFAULT_REGION: ${{ secrets.CROSSBOW_DOCS_S3_BUCKET_REGION }}
- BUCKET: ${{ secrets.CROSSBOW_DOCS_S3_BUCKET }}
- run: |
- aws s3 cp crossbow-nightly-report/crossbow-nightly-report.html $BUCKET/index.html
diff --git a/.github/workflows/nightly_packaging_report.yml b/.github/workflows/nightly_packaging_report.yml
deleted file mode 100644
index 57e4393d858..00000000000
--- a/.github/workflows/nightly_packaging_report.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: Report packaging
-
-on:
- workflow_dispatch:
- inputs:
- date:
- description: 'ISO date string to use in the action. Format YYYY-MM-DD'
- required: false
- default: ''
-
- schedule:
- - cron: '33 14 * * *'
-
-jobs:
- nightly_packaging_report:
- uses: ursacomputing/crossbow/.github/workflows/report.yml@main
- with:
- report_type: packaging
- date: '${{ inputs.date }}'
- secrets:
- CROSSBOW_GITHUB_TOKEN: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
- CROSSBOW_SMTP_USER: ${{ secrets.CROSSBOW_SMTP_USER }}
- CROSSBOW_SMTP_PASSWORD: ${{ secrets.CROSSBOW_SMTP_PASSWORD }}
- CROSSBOW_ZULIP_WEBHOOK: ${{ secrets.CROSSBOW_ZULIP_WEBHOOK }}
- CROSSBOW_SLACK_WEBHOOK: ${{ secrets.CROSSBOW_SLACK_WEBHOOK }}
diff --git a/.github/workflows/nightly_packaging_submit.yml b/.github/workflows/nightly_packaging_submit.yml
deleted file mode 100644
index 169750b3c5e..00000000000
--- a/.github/workflows/nightly_packaging_submit.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-name: Submit packaging
-
-on:
- workflow_dispatch:
- inputs:
- date:
- description: 'ISO date string to use in the action. Format YYYY-MM-DD'
- required: false
- default: ''
-
- schedule:
- - cron: '27 8 * * *'
-
-jobs:
- nightly_packaging_submit:
- uses: ursacomputing/crossbow/.github/workflows/submit.yml@main
- with:
- report_type: packaging
- date: '${{ inputs.date }}'
- secrets:
- CROSSBOW_GITHUB_TOKEN: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
diff --git a/.github/workflows/nightly_release_report.yml b/.github/workflows/nightly_release_report.yml
deleted file mode 100644
index 5942340b94b..00000000000
--- a/.github/workflows/nightly_release_report.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: Report release
-
-on:
- workflow_dispatch:
- inputs:
- date:
- description: 'ISO date string to use in the action. Format YYYY-MM-DD'
- required: false
- default: ''
-
- schedule:
- - cron: '49 18 * * *'
-
-jobs:
- nightly_release_report:
- uses: ursacomputing/crossbow/.github/workflows/report.yml@main
- with:
- report_type: release
- date: '${{ inputs.date }}'
- secrets:
- CROSSBOW_GITHUB_TOKEN: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
- CROSSBOW_SMTP_USER: ${{ secrets.CROSSBOW_SMTP_USER }}
- CROSSBOW_SMTP_PASSWORD: ${{ secrets.CROSSBOW_SMTP_PASSWORD }}
- CROSSBOW_ZULIP_WEBHOOK: ${{ secrets.CROSSBOW_ZULIP_WEBHOOK }}
- CROSSBOW_SLACK_WEBHOOK: ${{ secrets.CROSSBOW_SLACK_WEBHOOK }}
diff --git a/.github/workflows/nightly_release_submit.yml b/.github/workflows/nightly_release_submit.yml
deleted file mode 100644
index c9dff1f5fab..00000000000
--- a/.github/workflows/nightly_release_submit.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-name: Submit release
-
-on:
- workflow_dispatch:
- inputs:
- date:
- description: 'ISO date string to use in the action. Format YYYY-MM-DD'
- required: false
- default: ''
-
- schedule:
- - cron: '41 12 * * *'
-
-jobs:
- nightly_release_submit:
- uses: ursacomputing/crossbow/.github/workflows/submit.yml@main
- with:
- report_type: release
- date: '${{ inputs.date }}'
- secrets:
- CROSSBOW_GITHUB_TOKEN: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
diff --git a/.github/workflows/nightly_tests_report.yml b/.github/workflows/nightly_tests_report.yml
deleted file mode 100644
index 37fb9b88741..00000000000
--- a/.github/workflows/nightly_tests_report.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: Report tests
-
-on:
- workflow_dispatch:
- inputs:
- date:
- description: 'ISO date string to use in the action. Format YYYY-MM-DD'
- required: false
- default: ''
-
- schedule:
- - cron: '19 6 * * *'
-
-jobs:
- nightly_tests_report:
- uses: ursacomputing/crossbow/.github/workflows/report.yml@main
- with:
- report_type: tests
- date: '${{ inputs.date }}'
- secrets:
- CROSSBOW_GITHUB_TOKEN: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
- CROSSBOW_SMTP_USER: ${{ secrets.CROSSBOW_SMTP_USER }}
- CROSSBOW_SMTP_PASSWORD: ${{ secrets.CROSSBOW_SMTP_PASSWORD }}
- CROSSBOW_ZULIP_WEBHOOK: ${{ secrets.CROSSBOW_ZULIP_WEBHOOK }}
- CROSSBOW_SLACK_WEBHOOK: ${{ secrets.CROSSBOW_SLACK_WEBHOOK }}
diff --git a/.github/workflows/nightly_tests_submit.yml b/.github/workflows/nightly_tests_submit.yml
deleted file mode 100644
index 5b40736ccd0..00000000000
--- a/.github/workflows/nightly_tests_submit.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-name: Submit tests
-
-on:
- workflow_dispatch:
- inputs:
- date:
- description: 'ISO date string to use in the action. Format YYYY-MM-DD'
- required: false
- default: ''
-
- schedule:
- - cron: '11 0 * * *'
-
-jobs:
- nightly_tests_submit:
- uses: ursacomputing/crossbow/.github/workflows/submit.yml@main
- with:
- report_type: tests
- date: '${{ inputs.date }}'
- secrets:
- CROSSBOW_GITHUB_TOKEN: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
diff --git a/.github/workflows/performance-release-report.yml b/.github/workflows/performance-release-report.yml
deleted file mode 100644
index 3f7905c9a7e..00000000000
--- a/.github/workflows/performance-release-report.yml
+++ /dev/null
@@ -1,96 +0,0 @@
-name: Generate Performance Release Report
-
-concurrency:
- group: ${{ github.workflow }}
- cancel-in-progress: true
-
-on:
- pull_request:
- push:
- branches: main
- paths:
- - ".github/workflows/performance-release-report.yml"
- - "performance-release-report/performance-release-report.qmd"
- workflow_dispatch:
- inputs:
- baseline_git_commit:
- description: 'Baseline Git Commit'
- required: false
- contender_git_commit:
- description: 'Contender Git Commit'
- required: false
- rc_label:
- description: 'RC Label'
- required: false
- publish:
- type: boolean
- description: 'Publish to S3'
- required: false
- default: false
-
-permissions:
- contents: read
-
-env:
- ## payload vars
- BASELINE_GIT_COMMIT: ${{ github.event.inputs.baseline_git_commit }}
- CONTENDER_GIT_COMMIT: ${{ github.event.inputs.contender_git_commit }}
- RC_LABEL: ${{ github.event.inputs.rc_label || 'manual' }}
-
-jobs:
- build:
- runs-on: ubuntu-22.04
- steps:
-
- - uses: actions/checkout@v3
-
- - name: Setup Quarto
- uses: quarto-dev/quarto-actions/setup@v2
- with:
- version: 1.3.450
-
- - name: Setup R
- uses: r-lib/actions/setup-r@v2
- with:
- r-version: '4.3.1'
- use-public-rspm: true
-
- # Needed due to https://github.com/r-lib/actions/issues/618
- - name: Link renv.lock
- run: ln -sf 'performance-release-report/renv.lock'
-
- - name: Setup renv
- uses: r-lib/actions/setup-renv@v2
- env:
- # This is set by setup-r
- RENV_CONFIG_REPOS_OVERRIDE: ""
- with:
- cache-version: 1
-
- - name: Build Report
- uses: quarto-dev/quarto-actions/render@v2
- env:
- BASELINE_GIT_COMMIT: ${{ env.BASELINE_GIT_COMMIT }}
- CONTENDER_GIT_COMMIT: ${{ env.CONTENDER_GIT_COMMIT }}
- with:
- to: html
- path: 'performance-release-report/performance-release-report.qmd'
-
- - name: Upload Rendered Perf Report
- if: github.event_name == 'pull_request'
- uses: actions/upload-artifact@v3
- with:
- name: perf-report
- path: 'performance-release-report/performance-release-report.html'
-
- - name: Upload result
- if: ${{ github.event.inputs.publish == 'true' }}
- working-directory: performance-release-report
- shell: bash
- env:
- AWS_ACCESS_KEY_ID: ${{ secrets.CROSSBOW_DOCS_AWS_ACCESS_KEY_ID }}
- AWS_SECRET_ACCESS_KEY: ${{ secrets.CROSSBOW_DOCS_AWS_SECRET_ACCESS_KEY }}
- AWS_DEFAULT_REGION: ${{ secrets.CROSSBOW_DOCS_S3_BUCKET_REGION }}
- BUCKET: ${{ secrets.CROSSBOW_DOCS_S3_BUCKET }}
- run: |
- aws s3 cp performance-release-report.html $BUCKET/release_reports/arrow-release-report-${{ env.RC_LABEL }}.html
diff --git a/.github/workflows/prune_branches.yml b/.github/workflows/prune_branches.yml
deleted file mode 100644
index 6bd6e53d539..00000000000
--- a/.github/workflows/prune_branches.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-name: Prune Branches
-
-on:
- workflow_dispatch:
- inputs:
- days:
- description: 'Branches older than this amount of days will be deleted'
- required: true
- default: '90'
- type: string
- maximum:
- description: 'Maximum limit of branches to delete for a single run'
- required: true
- default: '500'
- type: string
- push:
- paths:
- - '.github/workflows/prune_branches.yml'
- schedule:
- - cron: '0 */12 * * *'
-
-jobs:
- remove:
- name: Remove Old Branches
- runs-on: ubuntu-latest
- steps:
- - name: Checkout Arrow
- shell: bash
- run: git clone https://github.com/apache/arrow
- - name: Checkout Crossbow
- shell: bash
- run: git clone https://github.com/ursacomputing/crossbow
- - uses: actions/setup-python@v4
- with:
- python-version: '3.8'
- - name: Install Archery
- shell: bash
- run: pip install -e arrow/dev/archery[crossbow]
- - name: Delete Branches
- shell: bash
- env:
- CROSSBOW_GITHUB_TOKEN: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
- run: archery crossbow delete-old-branches --days ${{ github.event.inputs.days || '90'}} --maximum ${{ github.event.inputs.maximum || '500'}}
diff --git a/.github/workflows/prune_previews.yml b/.github/workflows/prune_previews.yml
deleted file mode 100644
index 1d30b4740e3..00000000000
--- a/.github/workflows/prune_previews.yml
+++ /dev/null
@@ -1,65 +0,0 @@
-name: Prune Previews
-
-on:
- push:
- paths:
- - '.github/workflows/prune_previews.yml'
- schedule:
- - cron: '05 2 * * *'
-
-jobs:
- remove:
- name: Remove Stale Previews
- runs-on: ubuntu-latest
- steps:
- - name: Find PRs
- env:
- AWS_ACCESS_KEY_ID: ${{ secrets.CROSSBOW_DOCS_AWS_ACCESS_KEY_ID }}
- AWS_SECRET_ACCESS_KEY: ${{ secrets.CROSSBOW_DOCS_AWS_SECRET_ACCESS_KEY }}
- AWS_DEFAULT_REGION: ${{ secrets.CROSSBOW_DOCS_S3_BUCKET_REGION }}
- BUCKET: ${{ secrets.CROSSBOW_DOCS_S3_BUCKET }}
- run: |
- echo "PRs=$(aws s3 ls $BUCKET/pr_docs/ | sed 's/PRE//g' | tr -d '/' | tr '\n' ' ')" >> $GITHUB_ENV
- - name: Find open PRs
- uses: actions/github-script@v5
- id: find
- with:
- script: |
- let prs = "${{ env.PRs }}".split(" ").filter(x => x)
- async function not_open(id) {
- let pr;
- try {
- pr = await github.rest.pulls.get({
- "owner": "apache",
- "repo": "arrow",
- "pull_number": id
- })
- }
- catch(err) {
- //In case of error retrieving PR try to clean it.
- //Example manually triggered job with different naming.
- return(id)
- }
- if(pr.data.state !== "open") {
- return(id)
- }
- return("")
- }
-
- let del_prs = await Promise.all(prs.map(not_open))
- del_prs = del_prs.filter(x => x).join(" ")
- console.log(`::set-output name=del_prs::${del_prs}`)
- - name: Delete Dirs and Commit
- if: steps.find.outputs.del_prs != ''
- env:
- pr_ids: ${{ steps.find.outputs.del_prs }}
- AWS_ACCESS_KEY_ID: ${{ secrets.CROSSBOW_DOCS_AWS_ACCESS_KEY_ID }}
- AWS_SECRET_ACCESS_KEY: ${{ secrets.CROSSBOW_DOCS_AWS_SECRET_ACCESS_KEY }}
- AWS_DEFAULT_REGION: ${{ secrets.CROSSBOW_DOCS_S3_BUCKET_REGION }}
- BUCKET: ${{ secrets.CROSSBOW_DOCS_S3_BUCKET }}
- run: |
- for id in ${pr_ids[@]}
- do
- aws s3 rm $BUCKET/pr_docs/$id --recursive
- done
-
diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml
deleted file mode 100644
index fcf3019cc67..00000000000
--- a/.github/workflows/report.yml
+++ /dev/null
@@ -1,105 +0,0 @@
-name: Report
-
-on:
- workflow_call:
- inputs:
- report_type:
- required: true
- type: string
- date:
- required: false
- default: ''
- type: string
- secrets:
- CROSSBOW_GITHUB_TOKEN:
- required: true
- CROSSBOW_SMTP_USER:
- required: true
- CROSSBOW_SMTP_PASSWORD:
- required: true
- CROSSBOW_ZULIP_WEBHOOK:
- required: true
- CROSSBOW_SLACK_WEBHOOK:
- required: true
-
-jobs:
-
- nightly-report:
- name: Send and build nightly ${{ inputs.report_type }} report
- runs-on: ubuntu-latest
- steps:
- - name: Checkout Arrow
- shell: bash
- run: git clone https://github.com/apache/arrow
- - name: Checkout Crossbow
- uses: actions/checkout@v3
- with:
- # If we use github.token then the push will not trigger CI
- token: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
- path: crossbow
- fetch-depth: 0
- - uses: actions/setup-python@v4
- with:
- python-version: '3.8'
- - name: Install Archery
- shell: bash
- run: pip install -e arrow/dev/archery[crossbow]
- - name: Get Date
- id: date
- shell: bash
- env:
- DATE: ${{ inputs.date }}
- run: |
- if [ -z $DATE ]; then
- DATE=$(date -I)
- fi
- echo "::set-output name=date::$DATE"
- - name: Send Report
- shell: bash
- env:
- CROSSBOW_GITHUB_TOKEN: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
- run: |
- job_prefix=nightly-${{ inputs.report_type }}-${{ steps.date.outputs.date }}
- job_id=$(archery crossbow latest-prefix ${job_prefix})
- echo "Sending report for job ${job_id}..."
- archery crossbow report \
- --send \
- --sender-name Crossbow \
- --sender-email 'crossbow@ursacomputing.com' \
- --recipient-email 'builds@arrow.apache.org' \
- --smtp-user ${{ secrets.CROSSBOW_SMTP_USER }} \
- --smtp-password ${{ secrets.CROSSBOW_SMTP_PASSWORD }} \
- ${job_id}
- echo "Sending Slack report for job ${job_id}..."
- archery crossbow report-chat \
- --send \
- --no-fetch \
- --webhook ${{ secrets.CROSSBOW_SLACK_WEBHOOK }} \
- --extra-message-failure "@Jacob Wujciak @Raúl there has been some failures :cry:" \
- --extra-message-success "Well done! There are no failures! :tada:" \
- ${job_id}
- echo "Sending Zulip report for job ${job_id}..."
- archery crossbow report-chat \
- --send \
- --no-fetch \
- --webhook ${{ secrets.CROSSBOW_ZULIP_WEBHOOK }} \
- ${job_id}
- echo "Generating ${job_id} CSV ..."
- cd crossbow/csv_reports
- archery crossbow report-csv \
- --save \
- --no-fetch \
- ${job_id}
- - name: Commit CSV report
- shell: bash
- run: |
- job_prefix=nightly-${{ inputs.report_type }}-${{ steps.date.outputs.date }}
- cd crossbow
- git pull
- echo "Adding file to repo"
- git add csv_reports/*.csv
- echo "Commit CSV"
- git -c user.name="github-actions[bot]" -c user.email="github-actions[bot]@users.noreply.github.com" \
- commit -m "Auto commit ${job_prefix} CSV"
- echo "Pushing to repo"
- git push origin
diff --git a/.github/workflows/submit.yml b/.github/workflows/submit.yml
deleted file mode 100644
index 09e7f199750..00000000000
--- a/.github/workflows/submit.yml
+++ /dev/null
@@ -1,49 +0,0 @@
-name: Submit
-
-on:
- workflow_call:
- inputs:
- report_type:
- required: true
- type: string
- date:
- required: false
- default: ''
- type: string
- secrets:
- CROSSBOW_GITHUB_TOKEN:
- required: true
-
-jobs:
-
- nightly-submit:
- name: Submit nightly ${{ inputs.report_type }} builds
- runs-on: ubuntu-latest
- steps:
- - name: Checkout Arrow
- shell: bash
- run: git clone https://github.com/apache/arrow
- - name: Checkout Crossbow
- shell: bash
- run: git clone https://github.com/ursacomputing/crossbow
- - uses: actions/setup-python@v4
- with:
- python-version: '3.8'
- - name: Install Archery
- shell: bash
- run: pip install -e arrow/dev/archery[crossbow]
- - name: Get Date
- id: date
- shell: bash
- env:
- DATE: ${{ inputs.date }}
- run: |
- if [ -z $DATE ]; then
- DATE=$(date -I)
- fi
- echo "::set-output name=date::$DATE"
- - name: Submit Nightlies
- shell: bash
- env:
- CROSSBOW_GITHUB_TOKEN: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
- run: archery crossbow submit --job-prefix nightly-${{ inputs.report_type }}-${{ steps.date.outputs.date }} --group nightly-${{ inputs.report_type }}
diff --git a/.github/workflows/token_expiration.yml b/.github/workflows/token_expiration.yml
deleted file mode 100644
index cfc8e180e6e..00000000000
--- a/.github/workflows/token_expiration.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-name: Token expiration check
-
-on:
- workflow_dispatch:
- inputs:
- days:
- description: 'Amount of days allowed for token validity.'
- required: true
- default: '30'
- type: string
-
- schedule:
- # Mondays
- - cron: '0 0 * * 1'
-
-jobs:
- token-expiration-check:
- name: Validate token expiration date
- runs-on: ubuntu-latest
- steps:
- - name: Checkout Arrow
- shell: bash
- run: git clone https://github.com/apache/arrow
- - name: Checkout Crossbow
- uses: actions/checkout@v3
- with:
- # If we use github.token then the push will not trigger CI
- token: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
- path: crossbow
- fetch-depth: 0
- - uses: actions/setup-python@v4
- with:
- python-version: '3.11'
- - name: Install Archery
- shell: bash
- run: pip install -e arrow/dev/archery[crossbow]
- - name: Check token expiration
- shell: bash
- env:
- CROSSBOW_GITHUB_TOKEN: ${{ secrets.CROSSBOW_GITHUB_TOKEN }}
- run: |
- echo "Checking whether to notify on token expiration date"
- archery crossbow notify-token-expiration \
- --send \
- --sender-name Crossbow \
- --sender-email 'crossbow@ursacomputing.com' \
- --recipient-email 'builds@arrow.apache.org' \
- --smtp-user ${{ secrets.CROSSBOW_SMTP_USER }} \
- --smtp-password ${{ secrets.CROSSBOW_SMTP_PASSWORD }} \
- --days ${{ inputs.days || '30'}}
diff --git a/.github/workflows/windows_docker.yml b/.github/workflows/windows_docker.yml
deleted file mode 100644
index 136893f93ab..00000000000
--- a/.github/workflows/windows_docker.yml
+++ /dev/null
@@ -1,79 +0,0 @@
-name: Build Windows Base Images
-on:
- workflow_dispatch:
- inputs:
- vcpkg-version:
- description: 'VCPKG Version to use in building the images.'
- default: ''
- arrow-repo:
- description: 'Repository to checkout arrow from.'
- required: true
- default: 'apache/arrow'
- arrow-ref:
- description: 'Ref to checkout from arrow-repo.'
- required: true
- default: 'main'
-
-jobs:
- build:
- name: "Build Windows images"
- runs-on: windows-2019
- permissions:
- contents: read
- packages: write
- env:
- # Turned on by default in .env but Windows does not support buildkit
- # BUILDKIT_INLINE_CACHE: 1
- DOCKER_BUILDKIT: 0
- # archery uses this environment variable
- PYTHON: "3.10"
- # this is a private repository at the moment (mostly because of licensing
- # consideration of windows images with visual studio), but anyone can
- # recreate the image by manually building it via:
- # `archery build python-wheel-windows-vs2017`
- # note that we don't run docker build since there wouldn't be a cache hit
- # and rebuilding the dependencies takes a fair amount of time
- REPO: ghcr.io/ursacomputing/arrow
-
- steps:
- - name: Checkout Arrow
- uses: actions/checkout@v3
- with:
- repository: ${{ github.event.inputs.arrow-repo || 'apache/arrow'}}
- path: arrow
- ref: ${{ github.event.inputs.arrow-ref || 'main'}}
-
- - name: Login to GitHub Container Registry
- shell: bash
- run: echo ${{secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
-
- - name: Set up Python
- uses: actions/setup-python@v4
- with:
- python-version: 3.8
-
- - name: Install Archery
- shell: bash
- run: pip install -e arrow/dev/archery[all]
-
- - name: Set custom VCPKG version
- if: github.event.inputs.vcpkg-version != ''
- shell: bash
- run: |
- echo "VCPKG=${{ github.event.inputs.vcpkg-version }}" >> $GITHUB_ENV
-
- - name: Build image
- shell: cmd
- run: |
- set PYTHON=3.7&& archery docker build --no-pull python-wheel-windows-vs2017
- set PYTHON=3.8&& archery docker build --no-pull python-wheel-windows-vs2017
- set PYTHON=3.9&& archery docker build --no-pull python-wheel-windows-vs2017
- set PYTHON=3.10&& archery docker build --no-pull python-wheel-windows-vs2017
-
- - name: Push Image
- shell: cmd
- run: |
- set PYTHON=3.7&& archery docker push python-wheel-windows-vs2017
- set PYTHON=3.8&& archery docker push python-wheel-windows-vs2017
- set PYTHON=3.9&& archery docker push python-wheel-windows-vs2017
- set PYTHON=3.10&& archery docker push python-wheel-windows-vs2017
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 7034d740af7..00000000000
--- a/.gitignore
+++ /dev/null
@@ -1,7 +0,0 @@
-performance-release-report.html
-performance-release-report_cache
-performance-release-report_files
-performance-release-report.html
-crossbow-nightly-report.html
-crossbow-nightly-report_cache
-all.yml
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
index 56223d5a926..f4d0062a087 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,9 @@
+
branches:
only:
+ - master
- /.*-travis-.*/
os: linux
dist: trusty
-language: generic
\ No newline at end of file
+language: generic
diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index 261eeb9e9f8..00000000000
--- a/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
diff --git a/README.md b/README.md
deleted file mode 100644
index 8b24ebbe9b9..00000000000
--- a/README.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Arrow Packaging Tasks
-
-## Nightlies
-
-The nightly builds are submitted by cron jobs running as Github Actions
-cron jobs, see the github actions workflows defined in this repository.
-
-For the triggered tasks see the nightly group of crossbow's
-[task definition file](https://github.com/apache/arrow/blob/main/dev/tasks/tasks.yml).
-
-
-Nightly report CSVs are stored on the `csv_reports` directory.
\ No newline at end of file
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 00000000000..114329569ea
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,81 @@
+
+jobs:
+- job: linux
+ pool:
+ vmImage: ubuntu-latest
+ timeoutInMinutes: 360
+
+ variables:
+ CONFIG: linux_aarch64_cuda_compiler_versionNone
+ R_CONFIG:
+ ARROW_VERSION: 16.0.0.dev501
+ UPLOAD_PACKAGES: False
+
+ steps:
+ - script: |
+ sudo mkdir -p /opt/empty_dir || true
+ for d in \
+ /opt/ghc \
+ /opt/hostedtoolcache \
+ /usr/lib/jvm \
+ /usr/local/.ghcup \
+ /usr/local/lib/android \
+ /usr/local/share/powershell \
+ /usr/share/dotnet \
+ /usr/share/swift \
+ ; do
+ sudo rsync --stats -a --delete /opt/empty_dir/ $d || true
+ done
+ sudo apt-get purge -y -f firefox \
+ google-chrome-stable \
+ microsoft-edge-stable
+ sudo apt-get autoremove -y >& /dev/null
+ sudo apt-get autoclean -y >& /dev/null
+ sudo docker image prune --all --force
+ df -h
+ displayName: Manage disk space
+
+ # configure qemu binfmt-misc running. This allows us to run docker containers
+ # embedded qemu-static
+ - script: |
+ docker run --rm --privileged multiarch/qemu-user-static:register --reset --credential yes
+ ls /proc/sys/fs/binfmt_misc/
+ displayName: Configure binfmt_misc
+ condition: not(startsWith(variables['CONFIG'], 'linux_64'))
+
+ - script: |
+ git clone --no-checkout --branch maint-16.0.0 https://github.com/apache/arrow.git arrow
+ git -C arrow checkout eb5f162daab41b5c29afd644ba8517e8969fc56e
+ git -C arrow submodule update --init --recursive
+ displayName: Clone arrow
+
+
+ - task: CondaEnvironment@1
+ inputs:
+ packageSpecs: 'anaconda-client shyaml'
+ installOptions: '-c conda-forge'
+ updateConda: false
+
+ - script: |
+ mkdir build_artifacts
+ CI=azure arrow/dev/tasks/conda-recipes/run_docker_build.sh $(pwd)/build_artifacts
+ displayName: Run docker build
+
+ - task: UsePythonVersion@0
+ inputs:
+ versionSpec: '3.8'
+ - script: pip install -e arrow/dev/archery[crossbow-upload]
+ displayName: Install Crossbow
+ - bash: |
+ archery crossbow \
+ --queue-path $(pwd) \
+ --queue-remote https://github.com/ursacomputing/crossbow.git \
+ upload-artifacts \
+ --sha maint-16.0.0-nightly-packaging-2-azure-conda-linux-aarch64-cpu-py3 \
+ --tag maint-16.0.0-nightly-packaging-2-azure-conda-linux-aarch64-cpu-py3 \
+ "build_artifacts/*/*.conda"
+ env:
+ CROSSBOW_GITHUB_TOKEN: $(CROSSBOW_GITHUB_TOKEN)
+ displayName: Upload packages as a GitHub release
+
+
\ No newline at end of file
diff --git a/crossbow-nightly-report/.Rprofile b/crossbow-nightly-report/.Rprofile
deleted file mode 100644
index 81b960f5c6a..00000000000
--- a/crossbow-nightly-report/.Rprofile
+++ /dev/null
@@ -1 +0,0 @@
-source("renv/activate.R")
diff --git a/crossbow-nightly-report/R/functions.R b/crossbow-nightly-report/R/functions.R
deleted file mode 100644
index d2a7782b657..00000000000
--- a/crossbow-nightly-report/R/functions.R
+++ /dev/null
@@ -1,129 +0,0 @@
-is_dev <- function() {
- Sys.getenv("GITHUB_ACTIONS") != "true"
-}
-
-dropdown_helper <- function(values, name, element_id) {
- htmltools::tags$select(
- # Set to undefined to clear the filter
- onchange = glue("Reactable.setFilter('{element_id}', '{name}', event.target.value || undefined)"),
- # "All" has an empty value to clear the filter, and is the default option
- htmltools::tags$option(value = "", "All"),
- lapply(unique(values), htmltools::tags$option),
- "aria-label" = sprintf("Filter %s", name)
- )
-}
-
-arrow_commit_links <- function(sha) {
- glue("{substring(sha, 1, 7)}")
-}
-
-arrow_compare_links <- function(sha1, sha2) {
- comp_link <- glue("{substring(sha1, 1, 7)}")
-
- if (rlang::is_empty(comp_link)) {
- return(glue("Build has not yet been successful"))
- }
- return(comp_link)
-}
-
-format_links <- function(link) {
- glue("{basename(link)}")
-}
-
-make_nice_names <- function(x) {
- toTitleCase(gsub("_", " ", names(x)))
-}
-
-arrow_build_table <- function(nightly_data, type, task) {
- type_task_data <- nightly_data %>%
- filter(build_type == type) %>%
- filter(task_name == task)
-
- ## filter for when the most recent run is a failure
- ordered_only_recent_fails <- type_task_data %>%
- filter(task_name %in% task_name[nightly_date == max(nightly_date) & task_status != "success"]) %>%
- arrange(desc(nightly_date)) %>%
- mutate(task_status = case_when(
- task_status == "success" ~ "pass",
- task_status == "failure" ~ "fail",
- TRUE ~ task_status
- ))
-
- if (nrow(ordered_only_recent_fails) == 0) {
- ## if there are no failures, return a version of the table that reflects that
- days <- as.numeric(
- difftime(
- ymd(Sys.Date(), tz = "UTC"),
- max(type_task_data$nightly_date)
- )
- )
- success_df <- type_task_data %>%
- slice_max(order_by = nightly_date) %>%
- mutate(
- since_last_successful_build = days,
- last_successful_commit = arrow_commit_links(arrow_commit),
- last_successful_build = glue("{task_status}"),
- most_recent_status = "passing"
- ) %>%
- select(task_name, most_recent_status, since_last_successful_build, last_successful_commit, last_successful_build, build_type)
- return(success_df)
- }
-
- ## find first failure index
- idx_recent_fail <- rle(ordered_only_recent_fails$task_status)$lengths[1]
-
- ## expand failure index and give it some names
- failure_df <- tibble(fails_plus_one = seq(1, idx_recent_fail + 1)) %>%
- mutate(fail_label = case_when(
- fails_plus_one == idx_recent_fail ~ "first_failure",
- fails_plus_one == 1 ~ "most_recent_failure",
- fails_plus_one == idx_recent_fail + 1 ~ "last_successful_build",
- TRUE ~ paste0(fails_plus_one, " days ago")
- )) %>%
- filter(fails_plus_one <= 9 | grepl("failure|build", fail_label))
-
-
- ## inner_join to ordered data
- df <- ordered_only_recent_fails %>%
- rowid_to_column() %>%
- inner_join(failure_df, by = c("rowid" = "fails_plus_one"))
-
-
- if (all(type_task_data$task_status %in% "failure")) {
- days <- NA_real_
- } else {
- ## days since last successful build (need to add one)
- days <- sum(as.numeric(
- difftime(
- df$nightly_date[df$fail_label == "most_recent_failure"],
- df$nightly_date[df$fail_label == "last_successful_build"]
- )
- ), 1)
- }
-
-
- get_commit <- function(label) {
- df$arrow_commit[df$fail_label == label]
- }
-
- df %>%
- arrange(desc(fail_label)) %>%
- mutate(build_links = glue("{task_status}")) %>%
- select(task_name, build_type, build_links, fail_label) %>%
- pivot_wider(names_from = fail_label, values_from = build_links) %>%
- mutate(
- since_last_successful_build = days,
- last_successful_commit = arrow_compare_links(get_commit("last_successful_build"), get_commit("first_failure")),
- most_recent_status = "failing",
- .after = build_type
- )
-}
-
-crossbow_theme <- function(data, ...) {
- data %>%
- tab_options(
- table.font.size = 14,
- ...
- ) %>%
- opt_all_caps()
-}
\ No newline at end of file
diff --git a/crossbow-nightly-report/crossbow-nightly-report.qmd b/crossbow-nightly-report/crossbow-nightly-report.qmd
deleted file mode 100644
index b46a5120669..00000000000
--- a/crossbow-nightly-report/crossbow-nightly-report.qmd
+++ /dev/null
@@ -1,435 +0,0 @@
----
-title: "Crossbow Nightly Report"
-execute:
- warning: false
- echo: false
-format:
- html:
- grid:
- sidebar-width: 0px
- body-width: 2000px
- margin-width: 340px
- gutter-width: 1.5rem
- self-contained: true
- page-layout: full
- margin-left: 30px
- link-external-newwindow: true
- theme: [cosmo, crossbow.scss]
----
-
-```{r setup}
-#| include: false
-knitr::opts_chunk$set(
- warning = FALSE,
- message = FALSE,
- echo = FALSE,
- fig.width = 8,
- fig.height = 6
-)
-
-library(readr)
-library(ggplot2)
-library(gt)
-library(dplyr)
-library(glue)
-library(purrr)
-library(tidyr)
-library(cli)
-library(tools)
-library(tibble)
-library(lubridate)
-library(yaml)
-library(arrow)
-library(reactable)
-library(htmltools)
-
-source("R/functions.R")
-```
-
-```{r vars}
-lookback_window <- Sys.getenv("CROSSBOW_LOOKBACK_WINDOW", 120)
-```
-
-
-```{r data load}
-#| messages: false
-
-cols <- c(
- "task_name", "task_build_status", "build_links", "task_branch_name_on_the_crossbow_repo",
- "task_ci_type", "extra_params", "task_template_used", "arrow_repository_commit"
-)
-
-lookback_date <- Sys.Date() - days(lookback_window)
-
-## Here is where we tidy the data until a 1 value 1 cell data structure
-nightly <- open_csv_dataset("../csv_reports") %>%
- mutate(file_path = add_filename()) %>%
- mutate(build_links = gsub("^(.*?),.*", "\\1", build_links)) %>% ## get rid of multiple build links
- mutate(build_links = gsub("\\?.*", "", gsub("\\['|'\\]|'", "", build_links))) %>% ## gets rid of the extra formatting
- mutate(nightly_name = gsub("\\.csv$", "", gsub("^.*/", "", file_path))) %>%
- mutate(build_type = str_to_title((gsub("[0-9]|nightly|-", "", nightly_name)))) %>%
- mutate(nightly_date = ymd(gsub(".*-(\\d{4}-\\d{2}-\\d{2})-.*", "\\1", nightly_name))) %>%
- as_record_batch_reader() %>%
- filter(nightly_date >= lookback_date) %>%
- collect()
-
-
-most_recent_commit <- unique(nightly$arrow_commit[nightly$nightly_date == max(nightly$nightly_date)])
-```
-
-
-
-This report builds in sync with the email notifications (`builds@arrow.apache.org`). `r pluralize('Most recent commit{?s} are: {arrow_commit_links(most_recent_commit)}')`. The report examines data from the last `r lookback_window` days.
-
-
-# Summary
-```{r}
-pass_pct <- nightly %>%
- count(nightly_date, arrow_commit, build_type, task_status) %>%
- group_by(nightly_date, build_type) %>%
- mutate(prop = n / sum(n)) %>%
- filter(task_status == "success") %>%
- ungroup()
-
-## 1% threshold
-## days
-over_x_days <- 10
-trend <- pass_pct %>%
- filter(nightly_date > max(nightly_date) - ddays(over_x_days)) %>%
- nest(data = -build_type) %>%
- mutate(model = map(data, ~ lm(prop ~ nightly_date, .x))) %>%
- mutate(slope_pct_day = map_dbl(model, ~ coef(.x)["nightly_date"])) %>%
- mutate(failure_trend = case_when(
- slope_pct_day < -0.01 ~ "increasing",
- slope_pct_day > 0.01 ~ "decreasing",
- TRUE ~ "stable"
- )) %>%
- select(build_type, failure_trend)
-
-
-nightly_summary <- pass_pct %>%
- group_by(build_type) %>%
- filter(nightly_date == max(nightly_date)) %>%
- ungroup() %>%
- pivot_wider(names_from = task_status, values_from = n, values_fill = 0) %>%
- mutate(arrow_commit = arrow_commit_links(arrow_commit)) %>%
- arrange(desc(nightly_date)) %>%
- left_join(trend, by = c("build_type"))
-
-names(nightly_summary) <- make_nice_names(nightly_summary)
-
-nightly_summary %>%
- gt() %>%
- fmt_markdown("Arrow Commit") %>%
- tab_footnote(
- footnote = glue("Trend calculated over {over_x_days} days"),
- locations = cells_column_labels(
- columns = `Failure Trend`
- )
- ) %>%
- opt_all_caps()
-```
-
-
-```{r ojs-hand-off}
-ojs_define(plot_end_date = max(pass_pct$nightly_date))
-ojs_define(plot_default_date = max(pass_pct$nightly_date) - months(1))
-ojs_define(ojs_pass_pct = pass_pct)
-```
-
-# Trend
-
-```{ojs functions}
-trendPlot = function(data) {
- // variables to use
- const spec = ({
- x: "nightly_date",
- y: "prop",
- stroke: "build_type",
- fy: "build_type"
- })
-
- const added_spec = Object.assign(
- {},
- spec,
- {
- tip: true,
- symbol: "circle",
- fill: "build_type",
- opacity: 0.7
- }
- )
- return Plot.plot({
- width: 1200,
- height: 600,
- inset: 10,
- nice: true,
- color: {scheme: "viridis"},
- facet: {
- data: data,
- y: "build_type",
- marginRight: 90,
- marginLeft: 10,
- },
- fy: {
- inset: 15,
- padding: 0.1,
- label: ""
- },
- y: {
- domain: [0, 100],
- label: "Proportion successful (%)",
- percent: true,
- labelOffset: 40
- },
- x: {
- type: "utc",
- label: "Date",
- tickFormat: "%b '%y",
- },
- style: {
- fontSize: "16px"
- },
- marks: [
- Plot.lineY(data, Plot.windowY(10, spec)),
- Plot.frame(),
- Plot.dot(data, added_spec),
- Plot.axisX({ticks: d3.utcMonth.every(1), tickFormat: " %b %d", tickSize: 14, tickPadding: -8, textAnchor: "start"}),
- Plot.axisX({ticks: d3.utcYear, tickFormat: "\n %Y", tickSize: 24, tickPadding: -20, textAnchor: "start"}),
- Plot.gridX({ticks: d3.utcMonth})
- ]
- })
-}
-```
-
-```{ojs setup-ojs}
-// import newer observable
-Plot = await import("https://esm.sh/@observablehq/plot");
-import { aq, op } from '@uwdata/arquero';
-parser = d3.timeParse("%Y-%m-%d");
-import {slider as slide} from "@jashkenas/inputs"; // more configurable slider
-timeScale = d3.scaleTime()
- .domain([initialPlotStartDate, plotEndDate])
- .range([0, d3.timeDay.count(initialPlotStartDate, plotEndDate)]);
-
-passPct = aq.from(transpose(ojs_pass_pct))
- .derive({ nightly_date: aq.escape(d => parser(d.nightly_date)) })
-```
-
-```{ojs date-slider}
-minNightlyDate = passPct
- .rollup({
- min_nightly_date: d => op.min(d.nightly_date)
- })
- .array('min_nightly_date')
-
-// Slider for date
-initialPlotStartDate = new Date(minNightlyDate)
-plotEndDate = new Date(plot_end_date)
-plotDefaultDate = new Date(plot_default_date)
-
-// a slider that starts at the default date (value of CROSSBOW_LOOKBACK_WINDOW)
-viewof slider = slide({
- min: 0,
- max: d3.timeDay.count(initialPlotStartDate, plotEndDate),
- format: d => md`${d3.timeFormat("%B %d, %Y")(timeScale.invert(d))}`,
- title: "Slide to select a Date range",
- value: d3.timeDay.count(initialPlotStartDate, plotDefaultDate),
- step: 2
-})
-// turn slide number back into a date
-date = timeScale.invert(slider)
-```
-
-```{ojs trend-plot}
-//| echo: false
-
-passPctDateSub = passPct
- .filter(aq.escape(d => d.nightly_date > date))
-
-// Check for empty rows and alert user
-{
- if (passPctDateSub.numRows() == 0) {
- alert("No data for this date range. Please select a different date range.")
- }
- return html``
-}
-trendPlot(passPctDateSub)
-```
-
-# Build Status
-
-```{r build_status}
-#| results: asis
-# this file can be generated with `archery crossbow check-config > all.yml`
-tasks <- yaml.load_file("../all.yml")
-
-tests <- tasks$groups[["nightly-tests"]]
-packaging <- tasks$groups[["nightly-packaging"]]
-release <- tasks$groups[["nightly-release"]]
-nightly_regex <- paste0(c(tests, packaging, release), collapse = "|")
-
-active_jobs <- tasks$tasks %>% names() %>% grep(nightly_regex, x = ., value = TRUE)
-
-map_params <- nightly %>%
- distinct(task_name, build_type) %>%
- filter(task_name %in% active_jobs)
-
-build_table <- map2_df(map_params$build_type, map_params$task_name, ~ arrow_build_table(nightly, type = .x, task = .y))
-```
-
-
-```{r build_table}
-bs_nightly_tbl <- build_table %>%
- select(where(~ sum(!is.na(.x)) > 0)) %>% ## remove any columns with no data
- arrange(build_type, most_recent_status, desc(since_last_successful_build)) %>%
- rowwise() %>%
- mutate(
- since_last_successful_build = ifelse(
- is.na(since_last_successful_build), "-",
- pluralize("{since_last_successful_build} day{?s}")
- )
- ) %>%
- ungroup()
-
-## Need to sort columns at this level because of variable fail dates
-## TODO: find something a little less hacky
-bs_nightly_tbl_sorted <- bs_nightly_tbl[, rev(sort(names(bs_nightly_tbl)))] %>%
- relocate(any_of("most_recent_failure"), .after = last_col()) %>%
- relocate(any_of(c("last_successful_build", "first_failure")), .after = last_successful_commit) %>%
- relocate(build_type, .before = task_name)
-
-## set a row number such all the failing builds are always displayed
-tbl_row_n <- bs_nightly_tbl_sorted %>%
- filter(most_recent_status == "failing") %>%
- count(build_type) %>%
- filter(n == max(n)) %>%
- pull(n)
-
-names(bs_nightly_tbl_sorted) <- make_nice_names(bs_nightly_tbl_sorted)
-
-## html element id
-build_element_id <- "build_status"
-
-bs_nightly_tbl_sorted %>%
- reactable(
- filterable = TRUE,
- highlight = TRUE,
- wrap = TRUE,
- # style = list(fontSize = "0.6rem"),
- defaultPageSize = tbl_row_n,
- rowStyle = function(index) {
- if (bs_nightly_tbl_sorted[index, "Most Recent Status"] == "failing") {
- list(background = "#ffe4e4")
- } else {
- list(background = "#d1e8ff")
- }
- },
- defaultColDef = reactable::colDef(
- html = TRUE,
- class = "bw_table_cells",
- headerClass = "bw_table_header",
- headerVAlign = "bottom",
- width = 50
- ),
- columns = list(
- `Build Type` = reactable::colDef(
- width = 80,
- filterInput = function(values, name) {
- dropdown_helper(values, name, build_element_id)
- }
- ),
- `Task Name` = reactable::colDef(
- width = 110
- ),
- `Since Last Successful Build` = reactable::colDef(
- width = 100,
- filterInput = function(values, name) {
- dropdown_helper(values, name, build_element_id)
- }
- ),
- `Most Recent Status` = reactable::colDef(
- width = 70,
- filterInput = function(values, name) {
- dropdown_helper(values, name, build_element_id)
- }
- ),
- `Last Successful Commit` = reactable::colDef(
- width = 80
- ),
- `Last Successful Build` = reactable::colDef(
- width = 80
- ),
- `First Failure` = reactable::colDef(
- width = 60
- ),
- `Most Recent Failure` = reactable::colDef(
- width = 60
- )
- ),
- elementId = build_element_id
- )
-```
-
-# Logs
-
-```{r error-logs}
-#| results: asis
-#| eval: true
-
-error_element_id <- "error-logs-id"
-nightly_sub_tbl <- nightly %>%
- select(nightly_date, task_status, task_name, build_type, build_links, task_branch_name = crossbow_branch_url) %>%
- mutate(
- build_links = format_links(build_links),
- task_branch_name = format_links(task_branch_name)
- ) %>%
- arrange(desc(nightly_date))
-
-names(nightly_sub_tbl) <- make_nice_names(nightly_sub_tbl)
-
-nightly_sub_tbl %>%
- reactable(
- filterable = TRUE,
- highlight = TRUE,
- wrap = TRUE,
- rowStyle = function(index) {
- if (nightly_sub_tbl[index, "Task Status"] %in% c("failure", "error")) {
- list(background = "#ffe4e4")
- } else {
- list(background = "#d1e8ff")
- }
- },
- defaultColDef = reactable::colDef(
- html = TRUE,
- class = "bw_table_cells",
- headerClass = "bw_table_header",
- headerVAlign = "bottom",
- width = 100
- ),
- columns = list(
- `Task Status` = reactable::colDef(
- width = 80,
- filterInput = function(values, name) {
- dropdown_helper(values, name, error_element_id)
- }
- ),
- `Task Name` = reactable::colDef(
- width = 200,
- filterInput = function(values, name) {
- dropdown_helper(values, name, error_element_id)
- }
- ),
- `Build Type` = reactable::colDef(
- width = 100,
- filterInput = function(values, name) {
- dropdown_helper(values, name, error_element_id)
- }
- ),
- `Task Branch Name` = reactable::colDef(
- width = 300
- )
- ),
- elementId = error_element_id
- )
-```
\ No newline at end of file
diff --git a/crossbow-nightly-report/crossbow.scss b/crossbow-nightly-report/crossbow.scss
deleted file mode 100644
index 9b265c0f6bd..00000000000
--- a/crossbow-nightly-report/crossbow.scss
+++ /dev/null
@@ -1,19 +0,0 @@
-/*-- scss:defaults --*/
-
-// variables to change
-// https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
-
-// @import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap';
-@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap';
-$font-family-sans-serif: "Atkinson Hyperlegible", sans-serif;
-
-/*-- scss:rules --*/
-
-.bw_table_cells {
- font-size: 0.75rem;
- }
-
- .bw_table_header {
- font-size: 0.65rem;
- text-transform: uppercase;
- }
\ No newline at end of file
diff --git a/crossbow-nightly-report/renv.lock b/crossbow-nightly-report/renv.lock
deleted file mode 100644
index f63b0d9fc8f..00000000000
--- a/crossbow-nightly-report/renv.lock
+++ /dev/null
@@ -1,1165 +0,0 @@
-{
- "R": {
- "Version": "4.3.1",
- "Repositories": [
- {
- "Name": "CRAN",
- "URL": "https://packagemanager.rstudio.com/all/latest"
- },
- {
- "Name": "voltron data rpkg-repo",
- "URL": "https://voltrondata.github.io/rpkg-repo"
- }
- ]
- },
- "Packages": {
- "MASS": {
- "Package": "MASS",
- "Version": "7.3-60",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "grDevices",
- "graphics",
- "methods",
- "stats",
- "utils"
- ],
- "Hash": "a56a6365b3fa73293ea8d084be0d9bb0"
- },
- "Matrix": {
- "Package": "Matrix",
- "Version": "1.5-4.1",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "graphics",
- "grid",
- "lattice",
- "methods",
- "stats",
- "utils"
- ],
- "Hash": "38082d362d317745fb932e13956dccbb"
- },
- "R6": {
- "Package": "R6",
- "Version": "2.5.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "470851b6d5d0ac559e9d01bb352b4021"
- },
- "RColorBrewer": {
- "Package": "RColorBrewer",
- "Version": "1.1-3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "45f0398006e83a5b10b72a90663d8d8c"
- },
- "Rcpp": {
- "Package": "Rcpp",
- "Version": "1.0.10",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "methods",
- "utils"
- ],
- "Hash": "e749cae40fa9ef469b6050959517453c"
- },
- "V8": {
- "Package": "V8",
- "Version": "4.3.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "Rcpp",
- "curl",
- "jsonlite",
- "utils"
- ],
- "Hash": "d1fa8fae6a47e88bb46d5152312bd8bd"
- },
- "arrow": {
- "Package": "arrow",
- "Version": "12.0.1.1",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "R6",
- "assertthat",
- "bit64",
- "cpp11",
- "glue",
- "methods",
- "purrr",
- "rlang",
- "stats",
- "tidyselect",
- "utils",
- "vctrs"
- ],
- "Hash": "9ff9955a1766e0bc3493f06d8f43c97e"
- },
- "assertthat": {
- "Package": "assertthat",
- "Version": "0.2.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "tools"
- ],
- "Hash": "50c838a310445e954bc13f26f26a6ecf"
- },
- "base64enc": {
- "Package": "base64enc",
- "Version": "0.1-3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "543776ae6848fde2f48ff3816d0628bc"
- },
- "bigD": {
- "Package": "bigD",
- "Version": "0.2.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R"
- ],
- "Hash": "93637e906f3fe962413912c956eb44db"
- },
- "bit": {
- "Package": "bit",
- "Version": "4.0.5",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R"
- ],
- "Hash": "d242abec29412ce988848d0294b208fd"
- },
- "bit64": {
- "Package": "bit64",
- "Version": "4.0.5",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "bit",
- "methods",
- "stats",
- "utils"
- ],
- "Hash": "9fe98599ca456d6552421db0d6772d8f"
- },
- "bitops": {
- "Package": "bitops",
- "Version": "1.0-7",
- "Source": "Repository",
- "Repository": "CRAN",
- "Hash": "b7d8d8ee39869c18d8846a184dd8a1af"
- },
- "bslib": {
- "Package": "bslib",
- "Version": "0.4.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "base64enc",
- "cachem",
- "grDevices",
- "htmltools",
- "jquerylib",
- "jsonlite",
- "memoise",
- "mime",
- "rlang",
- "sass"
- ],
- "Hash": "a7fbf03946ad741129dc81098722fca1"
- },
- "cachem": {
- "Package": "cachem",
- "Version": "1.0.8",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "fastmap",
- "rlang"
- ],
- "Hash": "c35768291560ce302c0a6589f92e837d"
- },
- "cli": {
- "Package": "cli",
- "Version": "3.6.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "utils"
- ],
- "Hash": "89e6d8219950eac806ae0c489052048a"
- },
- "clipr": {
- "Package": "clipr",
- "Version": "0.8.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "utils"
- ],
- "Hash": "3f038e5ac7f41d4ac41ce658c85e3042"
- },
- "colorspace": {
- "Package": "colorspace",
- "Version": "2.1-0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "grDevices",
- "graphics",
- "methods",
- "stats"
- ],
- "Hash": "f20c47fd52fae58b4e377c37bb8c335b"
- },
- "commonmark": {
- "Package": "commonmark",
- "Version": "1.9.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Hash": "d691c61bff84bd63c383874d2d0c3307"
- },
- "cpp11": {
- "Package": "cpp11",
- "Version": "0.4.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Hash": "ed588261931ee3be2c700d22e94a29ab"
- },
- "crayon": {
- "Package": "crayon",
- "Version": "1.5.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "grDevices",
- "methods",
- "utils"
- ],
- "Hash": "e8a1e41acf02548751f45c718d55aa6a"
- },
- "curl": {
- "Package": "curl",
- "Version": "5.0.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "e4f97056611e8e6b8b852d13b7400cf1"
- },
- "digest": {
- "Package": "digest",
- "Version": "0.6.31",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "utils"
- ],
- "Hash": "8b708f296afd9ae69f450f9640be8990"
- },
- "dplyr": {
- "Package": "dplyr",
- "Version": "1.1.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "R6",
- "cli",
- "generics",
- "glue",
- "lifecycle",
- "magrittr",
- "methods",
- "pillar",
- "rlang",
- "tibble",
- "tidyselect",
- "utils",
- "vctrs"
- ],
- "Hash": "dea6970ff715ca541c387de363ff405e"
- },
- "ellipsis": {
- "Package": "ellipsis",
- "Version": "0.3.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "rlang"
- ],
- "Hash": "bb0eec2fe32e88d9e2836c2f73ea2077"
- },
- "evaluate": {
- "Package": "evaluate",
- "Version": "0.21",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "methods"
- ],
- "Hash": "d59f3b464e8da1aef82dc04b588b8dfb"
- },
- "fansi": {
- "Package": "fansi",
- "Version": "1.0.4",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "grDevices",
- "utils"
- ],
- "Hash": "1d9e7ad3c8312a192dea7d3db0274fde"
- },
- "farver": {
- "Package": "farver",
- "Version": "2.1.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Hash": "8106d78941f34855c440ddb946b8f7a5"
- },
- "fastmap": {
- "Package": "fastmap",
- "Version": "1.1.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Hash": "f7736a18de97dea803bde0a2daaafb27"
- },
- "fontawesome": {
- "Package": "fontawesome",
- "Version": "0.5.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "htmltools",
- "rlang"
- ],
- "Hash": "1e22b8cabbad1eae951a75e9f8b52378"
- },
- "fs": {
- "Package": "fs",
- "Version": "1.6.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "methods"
- ],
- "Hash": "94af08e0aa9675a16fadbb3aaaa90d2a"
- },
- "generics": {
- "Package": "generics",
- "Version": "0.1.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "methods"
- ],
- "Hash": "15e9634c0fcd294799e9b2e929ed1b86"
- },
- "ggplot2": {
- "Package": "ggplot2",
- "Version": "3.4.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "MASS",
- "R",
- "cli",
- "glue",
- "grDevices",
- "grid",
- "gtable",
- "isoband",
- "lifecycle",
- "mgcv",
- "rlang",
- "scales",
- "stats",
- "tibble",
- "vctrs",
- "withr"
- ],
- "Hash": "3a147ee02e85a8941aad9909f1b43b7b"
- },
- "glue": {
- "Package": "glue",
- "Version": "1.6.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "methods"
- ],
- "Hash": "4f2596dfb05dac67b9dc558e5c6fba2e"
- },
- "gt": {
- "Package": "gt",
- "Version": "0.9.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "base64enc",
- "bigD",
- "bitops",
- "cli",
- "commonmark",
- "dplyr",
- "fs",
- "glue",
- "htmltools",
- "htmlwidgets",
- "juicyjuice",
- "magrittr",
- "markdown",
- "reactable",
- "rlang",
- "sass",
- "scales",
- "tibble",
- "tidyselect",
- "xml2"
- ],
- "Hash": "d55233a737e43e44987724e57dfec302"
- },
- "gtable": {
- "Package": "gtable",
- "Version": "0.3.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "glue",
- "grid",
- "lifecycle",
- "rlang"
- ],
- "Hash": "b44addadb528a0d227794121c00572a0"
- },
- "here": {
- "Package": "here",
- "Version": "1.0.1",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "rprojroot"
- ],
- "Hash": "24b224366f9c2e7534d2344d10d59211"
- },
- "highr": {
- "Package": "highr",
- "Version": "0.10",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "xfun"
- ],
- "Hash": "06230136b2d2b9ba5805e1963fa6e890"
- },
- "hms": {
- "Package": "hms",
- "Version": "1.1.3",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "lifecycle",
- "methods",
- "pkgconfig",
- "rlang",
- "vctrs"
- ],
- "Hash": "b59377caa7ed00fa41808342002138f9"
- },
- "htmltools": {
- "Package": "htmltools",
- "Version": "0.5.5",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "base64enc",
- "digest",
- "ellipsis",
- "fastmap",
- "grDevices",
- "rlang",
- "utils"
- ],
- "Hash": "ba0240784ad50a62165058a27459304a"
- },
- "htmlwidgets": {
- "Package": "htmlwidgets",
- "Version": "1.6.2",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "grDevices",
- "htmltools",
- "jsonlite",
- "knitr",
- "rmarkdown",
- "yaml"
- ],
- "Hash": "a865aa85bcb2697f47505bfd70422471"
- },
- "isoband": {
- "Package": "isoband",
- "Version": "0.2.7",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "grid",
- "utils"
- ],
- "Hash": "0080607b4a1a7b28979aecef976d8bc2"
- },
- "jquerylib": {
- "Package": "jquerylib",
- "Version": "0.1.4",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "htmltools"
- ],
- "Hash": "5aab57a3bd297eee1c1d862735972182"
- },
- "jsonlite": {
- "Package": "jsonlite",
- "Version": "1.8.4",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "methods"
- ],
- "Hash": "a4269a09a9b865579b2635c77e572374"
- },
- "juicyjuice": {
- "Package": "juicyjuice",
- "Version": "0.1.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "V8"
- ],
- "Hash": "3bcd11943da509341838da9399e18bce"
- },
- "knitr": {
- "Package": "knitr",
- "Version": "1.42",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "evaluate",
- "highr",
- "methods",
- "tools",
- "xfun",
- "yaml"
- ],
- "Hash": "8329a9bcc82943c8069104d4be3ee22d"
- },
- "labeling": {
- "Package": "labeling",
- "Version": "0.4.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "graphics",
- "stats"
- ],
- "Hash": "3d5108641f47470611a32d0bdf357a72"
- },
- "lattice": {
- "Package": "lattice",
- "Version": "0.21-8",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "grDevices",
- "graphics",
- "grid",
- "stats",
- "utils"
- ],
- "Hash": "0b8a6d63c8770f02a8b5635f3c431e6b"
- },
- "lifecycle": {
- "Package": "lifecycle",
- "Version": "1.0.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "glue",
- "rlang"
- ],
- "Hash": "001cecbeac1cff9301bdc3775ee46a86"
- },
- "lubridate": {
- "Package": "lubridate",
- "Version": "1.9.2",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "generics",
- "methods",
- "timechange"
- ],
- "Hash": "e25f18436e3efd42c7c590a1c4c15390"
- },
- "magrittr": {
- "Package": "magrittr",
- "Version": "2.0.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "7ce2733a9826b3aeb1775d56fd305472"
- },
- "markdown": {
- "Package": "markdown",
- "Version": "1.7",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "commonmark",
- "utils",
- "xfun"
- ],
- "Hash": "0ffaea87c070a56d140ce00b0727b278"
- },
- "memoise": {
- "Package": "memoise",
- "Version": "2.0.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "cachem",
- "rlang"
- ],
- "Hash": "e2817ccf4a065c5d9d7f2cfbe7c1d78c"
- },
- "mgcv": {
- "Package": "mgcv",
- "Version": "1.8-42",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "Matrix",
- "R",
- "graphics",
- "methods",
- "nlme",
- "splines",
- "stats",
- "utils"
- ],
- "Hash": "3460beba7ccc8946249ba35327ba902a"
- },
- "mime": {
- "Package": "mime",
- "Version": "0.12",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "tools"
- ],
- "Hash": "18e9c28c1d3ca1560ce30658b22ce104"
- },
- "munsell": {
- "Package": "munsell",
- "Version": "0.5.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "colorspace",
- "methods"
- ],
- "Hash": "6dfe8bf774944bd5595785e3229d8771"
- },
- "nlme": {
- "Package": "nlme",
- "Version": "3.1-162",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "graphics",
- "lattice",
- "stats",
- "utils"
- ],
- "Hash": "0984ce8da8da9ead8643c5cbbb60f83e"
- },
- "pillar": {
- "Package": "pillar",
- "Version": "1.9.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "cli",
- "fansi",
- "glue",
- "lifecycle",
- "rlang",
- "utf8",
- "utils",
- "vctrs"
- ],
- "Hash": "15da5a8412f317beeee6175fbc76f4bb"
- },
- "pkgconfig": {
- "Package": "pkgconfig",
- "Version": "2.0.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "utils"
- ],
- "Hash": "01f28d4278f15c76cddbea05899c5d6f"
- },
- "prettyunits": {
- "Package": "prettyunits",
- "Version": "1.1.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Hash": "95ef9167b75dde9d2ccc3c7528393e7e"
- },
- "progress": {
- "Package": "progress",
- "Version": "1.2.2",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R6",
- "crayon",
- "hms",
- "prettyunits"
- ],
- "Hash": "14dc9f7a3c91ebb14ec5bb9208a07061"
- },
- "purrr": {
- "Package": "purrr",
- "Version": "1.0.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "lifecycle",
- "magrittr",
- "rlang",
- "vctrs"
- ],
- "Hash": "d71c815267c640f17ddbf7f16144b4bb"
- },
- "rappdirs": {
- "Package": "rappdirs",
- "Version": "0.3.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "5e3c5dc0b071b21fa128676560dbe94d"
- },
- "reactR": {
- "Package": "reactR",
- "Version": "0.4.4",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "htmltools"
- ],
- "Hash": "75389c8091eb14ee21c6bc87a88b3809"
- },
- "reactable": {
- "Package": "reactable",
- "Version": "0.4.4",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "digest",
- "htmltools",
- "htmlwidgets",
- "jsonlite",
- "reactR"
- ],
- "Hash": "6069eb2a6597963eae0605c1875ff14c"
- },
- "readr": {
- "Package": "readr",
- "Version": "2.1.4",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "R6",
- "cli",
- "clipr",
- "cpp11",
- "crayon",
- "hms",
- "lifecycle",
- "methods",
- "rlang",
- "tibble",
- "tzdb",
- "utils",
- "vroom"
- ],
- "Hash": "b5047343b3825f37ad9d3b5d89aa1078"
- },
- "renv": {
- "Package": "renv",
- "Version": "1.0.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "utils"
- ],
- "Hash": "c321cd99d56443dbffd1c9e673c0c1a2"
- },
- "rlang": {
- "Package": "rlang",
- "Version": "1.1.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "utils"
- ],
- "Hash": "a85c767b55f0bf9b7ad16c6d7baee5bb"
- },
- "rmarkdown": {
- "Package": "rmarkdown",
- "Version": "2.21",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "bslib",
- "evaluate",
- "fontawesome",
- "htmltools",
- "jquerylib",
- "jsonlite",
- "knitr",
- "methods",
- "stringr",
- "tinytex",
- "tools",
- "utils",
- "xfun",
- "yaml"
- ],
- "Hash": "493df4ae51e2e984952ea4d5c75786a3"
- },
- "rprojroot": {
- "Package": "rprojroot",
- "Version": "2.0.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "1de7ab598047a87bba48434ba35d497d"
- },
- "sass": {
- "Package": "sass",
- "Version": "0.4.6",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R6",
- "fs",
- "htmltools",
- "rappdirs",
- "rlang"
- ],
- "Hash": "cc3ec7dd33982ef56570229b62d6388e"
- },
- "scales": {
- "Package": "scales",
- "Version": "1.2.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "R6",
- "RColorBrewer",
- "farver",
- "labeling",
- "lifecycle",
- "munsell",
- "rlang",
- "viridisLite"
- ],
- "Hash": "906cb23d2f1c5680b8ce439b44c6fa63"
- },
- "stringi": {
- "Package": "stringi",
- "Version": "1.7.12",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "stats",
- "tools",
- "utils"
- ],
- "Hash": "ca8bd84263c77310739d2cf64d84d7c9"
- },
- "stringr": {
- "Package": "stringr",
- "Version": "1.5.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "glue",
- "lifecycle",
- "magrittr",
- "rlang",
- "stringi",
- "vctrs"
- ],
- "Hash": "671a4d384ae9d32fc47a14e98bfa3dc8"
- },
- "tibble": {
- "Package": "tibble",
- "Version": "3.2.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "fansi",
- "lifecycle",
- "magrittr",
- "methods",
- "pillar",
- "pkgconfig",
- "rlang",
- "utils",
- "vctrs"
- ],
- "Hash": "a84e2cc86d07289b3b6f5069df7a004c"
- },
- "tidyr": {
- "Package": "tidyr",
- "Version": "1.3.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "cpp11",
- "dplyr",
- "glue",
- "lifecycle",
- "magrittr",
- "purrr",
- "rlang",
- "stringr",
- "tibble",
- "tidyselect",
- "utils",
- "vctrs"
- ],
- "Hash": "e47debdc7ce599b070c8e78e8ac0cfcf"
- },
- "tidyselect": {
- "Package": "tidyselect",
- "Version": "1.2.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "glue",
- "lifecycle",
- "rlang",
- "vctrs",
- "withr"
- ],
- "Hash": "79540e5fcd9e0435af547d885f184fd5"
- },
- "timechange": {
- "Package": "timechange",
- "Version": "0.2.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "cpp11"
- ],
- "Hash": "8548b44f79a35ba1791308b61e6012d7"
- },
- "tinytex": {
- "Package": "tinytex",
- "Version": "0.45",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "xfun"
- ],
- "Hash": "e4e357f28c2edff493936b6cb30c3d65"
- },
- "tzdb": {
- "Package": "tzdb",
- "Version": "0.4.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "cpp11"
- ],
- "Hash": "f561504ec2897f4d46f0c7657e488ae1"
- },
- "utf8": {
- "Package": "utf8",
- "Version": "1.2.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "1fe17157424bb09c48a8b3b550c753bc"
- },
- "vctrs": {
- "Package": "vctrs",
- "Version": "0.6.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "glue",
- "lifecycle",
- "rlang"
- ],
- "Hash": "a745bda7aff4734c17294bb41d4e4607"
- },
- "viridisLite": {
- "Package": "viridisLite",
- "Version": "0.4.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "c826c7c4241b6fc89ff55aaea3fa7491"
- },
- "vroom": {
- "Package": "vroom",
- "Version": "1.6.3",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "bit64",
- "cli",
- "cpp11",
- "crayon",
- "glue",
- "hms",
- "lifecycle",
- "methods",
- "progress",
- "rlang",
- "stats",
- "tibble",
- "tidyselect",
- "tzdb",
- "vctrs",
- "withr"
- ],
- "Hash": "8318e64ffb3a70e652494017ec455561"
- },
- "withr": {
- "Package": "withr",
- "Version": "2.5.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "grDevices",
- "graphics",
- "stats"
- ],
- "Hash": "c0e49a9760983e81e55cdd9be92e7182"
- },
- "xfun": {
- "Package": "xfun",
- "Version": "0.39",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "stats",
- "tools"
- ],
- "Hash": "8f56e9acb54fb525e66464d57ab58bcb"
- },
- "xml2": {
- "Package": "xml2",
- "Version": "1.3.4",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "methods"
- ],
- "Hash": "7dc765ac9b909487326a7d471fdd3821"
- },
- "yaml": {
- "Package": "yaml",
- "Version": "2.3.7",
- "Source": "Repository",
- "Repository": "RSPM",
- "Hash": "0d0056cc5383fbc240ccd0cb584bf436"
- }
- }
-}
diff --git a/crossbow-nightly-report/renv/.gitignore b/crossbow-nightly-report/renv/.gitignore
deleted file mode 100644
index 0ec0cbba2d7..00000000000
--- a/crossbow-nightly-report/renv/.gitignore
+++ /dev/null
@@ -1,7 +0,0 @@
-library/
-local/
-cellar/
-lock/
-python/
-sandbox/
-staging/
diff --git a/crossbow-nightly-report/renv/activate.R b/crossbow-nightly-report/renv/activate.R
deleted file mode 100644
index cc742fc96ff..00000000000
--- a/crossbow-nightly-report/renv/activate.R
+++ /dev/null
@@ -1,1181 +0,0 @@
-
-local({
-
- # the requested version of renv
- version <- "1.0.0"
- attr(version, "sha") <- NULL
-
- # the project directory
- project <- getwd()
-
- # figure out whether the autoloader is enabled
- enabled <- local({
-
- # first, check config option
- override <- getOption("renv.config.autoloader.enabled")
- if (!is.null(override))
- return(override)
-
- # next, check environment variables
- # TODO: prefer using the configuration one in the future
- envvars <- c(
- "RENV_CONFIG_AUTOLOADER_ENABLED",
- "RENV_AUTOLOADER_ENABLED",
- "RENV_ACTIVATE_PROJECT"
- )
-
- for (envvar in envvars) {
- envval <- Sys.getenv(envvar, unset = NA)
- if (!is.na(envval))
- return(tolower(envval) %in% c("true", "t", "1"))
- }
-
- # enable by default
- TRUE
-
- })
-
- if (!enabled)
- return(FALSE)
-
- # avoid recursion
- if (identical(getOption("renv.autoloader.running"), TRUE)) {
- warning("ignoring recursive attempt to run renv autoloader")
- return(invisible(TRUE))
- }
-
- # signal that we're loading renv during R startup
- options(renv.autoloader.running = TRUE)
- on.exit(options(renv.autoloader.running = NULL), add = TRUE)
-
- # signal that we've consented to use renv
- options(renv.consent = TRUE)
-
- # load the 'utils' package eagerly -- this ensures that renv shims, which
- # mask 'utils' packages, will come first on the search path
- library(utils, lib.loc = .Library)
-
- # unload renv if it's already been loaded
- if ("renv" %in% loadedNamespaces())
- unloadNamespace("renv")
-
- # load bootstrap tools
- `%||%` <- function(x, y) {
- if (is.null(x)) y else x
- }
-
- catf <- function(fmt, ..., appendLF = TRUE) {
-
- quiet <- getOption("renv.bootstrap.quiet", default = FALSE)
- if (quiet)
- return(invisible())
-
- msg <- sprintf(fmt, ...)
- cat(msg, file = stdout(), sep = if (appendLF) "\n" else "")
-
- invisible(msg)
-
- }
-
- header <- function(label,
- ...,
- prefix = "#",
- suffix = "-",
- n = min(getOption("width"), 78))
- {
- label <- sprintf(label, ...)
- n <- max(n - nchar(label) - nchar(prefix) - 2L, 8L)
- if (n <= 0)
- return(paste(prefix, label))
-
- tail <- paste(rep.int(suffix, n), collapse = "")
- paste0(prefix, " ", label, " ", tail)
-
- }
-
- startswith <- function(string, prefix) {
- substring(string, 1, nchar(prefix)) == prefix
- }
-
- bootstrap <- function(version, library) {
-
- friendly <- renv_bootstrap_version_friendly(version)
- section <- header(sprintf("Bootstrapping renv %s", friendly))
- catf(section)
-
- # attempt to download renv
- catf("- Downloading renv ... ", appendLF = FALSE)
- withCallingHandlers(
- tarball <- renv_bootstrap_download(version),
- error = function(err) {
- catf("FAILED")
- stop("failed to download:\n", conditionMessage(err))
- }
- )
- catf("OK")
- on.exit(unlink(tarball), add = TRUE)
-
- # now attempt to install
- catf("- Installing renv ... ", appendLF = FALSE)
- withCallingHandlers(
- status <- renv_bootstrap_install(version, tarball, library),
- error = function(err) {
- catf("FAILED")
- stop("failed to install:\n", conditionMessage(err))
- }
- )
- catf("OK")
-
- # add empty line to break up bootstrapping from normal output
- catf("")
-
- return(invisible())
- }
-
- renv_bootstrap_tests_running <- function() {
- getOption("renv.tests.running", default = FALSE)
- }
-
- renv_bootstrap_repos <- function() {
-
- # get CRAN repository
- cran <- getOption("renv.repos.cran", "https://cloud.r-project.org")
-
- # check for repos override
- repos <- Sys.getenv("RENV_CONFIG_REPOS_OVERRIDE", unset = NA)
- if (!is.na(repos)) {
-
- # check for RSPM; if set, use a fallback repository for renv
- rspm <- Sys.getenv("RSPM", unset = NA)
- if (identical(rspm, repos))
- repos <- c(RSPM = rspm, CRAN = cran)
-
- return(repos)
-
- }
-
- # check for lockfile repositories
- repos <- tryCatch(renv_bootstrap_repos_lockfile(), error = identity)
- if (!inherits(repos, "error") && length(repos))
- return(repos)
-
- # retrieve current repos
- repos <- getOption("repos")
-
- # ensure @CRAN@ entries are resolved
- repos[repos == "@CRAN@"] <- cran
-
- # add in renv.bootstrap.repos if set
- default <- c(FALLBACK = "https://cloud.r-project.org")
- extra <- getOption("renv.bootstrap.repos", default = default)
- repos <- c(repos, extra)
-
- # remove duplicates that might've snuck in
- dupes <- duplicated(repos) | duplicated(names(repos))
- repos[!dupes]
-
- }
-
- renv_bootstrap_repos_lockfile <- function() {
-
- lockpath <- Sys.getenv("RENV_PATHS_LOCKFILE", unset = "renv.lock")
- if (!file.exists(lockpath))
- return(NULL)
-
- lockfile <- tryCatch(renv_json_read(lockpath), error = identity)
- if (inherits(lockfile, "error")) {
- warning(lockfile)
- return(NULL)
- }
-
- repos <- lockfile$R$Repositories
- if (length(repos) == 0)
- return(NULL)
-
- keys <- vapply(repos, `[[`, "Name", FUN.VALUE = character(1))
- vals <- vapply(repos, `[[`, "URL", FUN.VALUE = character(1))
- names(vals) <- keys
-
- return(vals)
-
- }
-
- renv_bootstrap_download <- function(version) {
-
- sha <- attr(version, "sha", exact = TRUE)
-
- methods <- if (!is.null(sha)) {
-
- # attempting to bootstrap a development version of renv
- c(
- function() renv_bootstrap_download_tarball(sha),
- function() renv_bootstrap_download_github(sha)
- )
-
- } else {
-
- # attempting to bootstrap a release version of renv
- c(
- function() renv_bootstrap_download_tarball(version),
- function() renv_bootstrap_download_cran_latest(version),
- function() renv_bootstrap_download_cran_archive(version)
- )
-
- }
-
- for (method in methods) {
- path <- tryCatch(method(), error = identity)
- if (is.character(path) && file.exists(path))
- return(path)
- }
-
- stop("All download methods failed")
-
- }
-
- renv_bootstrap_download_impl <- function(url, destfile) {
-
- mode <- "wb"
-
- # https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17715
- fixup <-
- Sys.info()[["sysname"]] == "Windows" &&
- substring(url, 1L, 5L) == "file:"
-
- if (fixup)
- mode <- "w+b"
-
- args <- list(
- url = url,
- destfile = destfile,
- mode = mode,
- quiet = TRUE
- )
-
- if ("headers" %in% names(formals(utils::download.file)))
- args$headers <- renv_bootstrap_download_custom_headers(url)
-
- do.call(utils::download.file, args)
-
- }
-
- renv_bootstrap_download_custom_headers <- function(url) {
-
- headers <- getOption("renv.download.headers")
- if (is.null(headers))
- return(character())
-
- if (!is.function(headers))
- stopf("'renv.download.headers' is not a function")
-
- headers <- headers(url)
- if (length(headers) == 0L)
- return(character())
-
- if (is.list(headers))
- headers <- unlist(headers, recursive = FALSE, use.names = TRUE)
-
- ok <-
- is.character(headers) &&
- is.character(names(headers)) &&
- all(nzchar(names(headers)))
-
- if (!ok)
- stop("invocation of 'renv.download.headers' did not return a named character vector")
-
- headers
-
- }
-
- renv_bootstrap_download_cran_latest <- function(version) {
-
- spec <- renv_bootstrap_download_cran_latest_find(version)
- type <- spec$type
- repos <- spec$repos
-
- baseurl <- utils::contrib.url(repos = repos, type = type)
- ext <- if (identical(type, "source"))
- ".tar.gz"
- else if (Sys.info()[["sysname"]] == "Windows")
- ".zip"
- else
- ".tgz"
- name <- sprintf("renv_%s%s", version, ext)
- url <- paste(baseurl, name, sep = "/")
-
- destfile <- file.path(tempdir(), name)
- status <- tryCatch(
- renv_bootstrap_download_impl(url, destfile),
- condition = identity
- )
-
- if (inherits(status, "condition"))
- return(FALSE)
-
- # report success and return
- destfile
-
- }
-
- renv_bootstrap_download_cran_latest_find <- function(version) {
-
- # check whether binaries are supported on this system
- binary <-
- getOption("renv.bootstrap.binary", default = TRUE) &&
- !identical(.Platform$pkgType, "source") &&
- !identical(getOption("pkgType"), "source") &&
- Sys.info()[["sysname"]] %in% c("Darwin", "Windows")
-
- types <- c(if (binary) "binary", "source")
-
- # iterate over types + repositories
- for (type in types) {
- for (repos in renv_bootstrap_repos()) {
-
- # retrieve package database
- db <- tryCatch(
- as.data.frame(
- utils::available.packages(type = type, repos = repos),
- stringsAsFactors = FALSE
- ),
- error = identity
- )
-
- if (inherits(db, "error"))
- next
-
- # check for compatible entry
- entry <- db[db$Package %in% "renv" & db$Version %in% version, ]
- if (nrow(entry) == 0)
- next
-
- # found it; return spec to caller
- spec <- list(entry = entry, type = type, repos = repos)
- return(spec)
-
- }
- }
-
- # if we got here, we failed to find renv
- fmt <- "renv %s is not available from your declared package repositories"
- stop(sprintf(fmt, version))
-
- }
-
- renv_bootstrap_download_cran_archive <- function(version) {
-
- name <- sprintf("renv_%s.tar.gz", version)
- repos <- renv_bootstrap_repos()
- urls <- file.path(repos, "src/contrib/Archive/renv", name)
- destfile <- file.path(tempdir(), name)
-
- for (url in urls) {
-
- status <- tryCatch(
- renv_bootstrap_download_impl(url, destfile),
- condition = identity
- )
-
- if (identical(status, 0L))
- return(destfile)
-
- }
-
- return(FALSE)
-
- }
-
- renv_bootstrap_download_tarball <- function(version) {
-
- # if the user has provided the path to a tarball via
- # an environment variable, then use it
- tarball <- Sys.getenv("RENV_BOOTSTRAP_TARBALL", unset = NA)
- if (is.na(tarball))
- return()
-
- # allow directories
- if (dir.exists(tarball)) {
- name <- sprintf("renv_%s.tar.gz", version)
- tarball <- file.path(tarball, name)
- }
-
- # bail if it doesn't exist
- if (!file.exists(tarball)) {
-
- # let the user know we weren't able to honour their request
- fmt <- "- RENV_BOOTSTRAP_TARBALL is set (%s) but does not exist."
- msg <- sprintf(fmt, tarball)
- warning(msg)
-
- # bail
- return()
-
- }
-
- catf("- Using local tarball '%s'.", tarball)
- tarball
-
- }
-
- renv_bootstrap_download_github <- function(version) {
-
- enabled <- Sys.getenv("RENV_BOOTSTRAP_FROM_GITHUB", unset = "TRUE")
- if (!identical(enabled, "TRUE"))
- return(FALSE)
-
- # prepare download options
- pat <- Sys.getenv("GITHUB_PAT")
- if (nzchar(Sys.which("curl")) && nzchar(pat)) {
- fmt <- "--location --fail --header \"Authorization: token %s\""
- extra <- sprintf(fmt, pat)
- saved <- options("download.file.method", "download.file.extra")
- options(download.file.method = "curl", download.file.extra = extra)
- on.exit(do.call(base::options, saved), add = TRUE)
- } else if (nzchar(Sys.which("wget")) && nzchar(pat)) {
- fmt <- "--header=\"Authorization: token %s\""
- extra <- sprintf(fmt, pat)
- saved <- options("download.file.method", "download.file.extra")
- options(download.file.method = "wget", download.file.extra = extra)
- on.exit(do.call(base::options, saved), add = TRUE)
- }
-
- url <- file.path("https://api.github.com/repos/rstudio/renv/tarball", version)
- name <- sprintf("renv_%s.tar.gz", version)
- destfile <- file.path(tempdir(), name)
-
- status <- tryCatch(
- renv_bootstrap_download_impl(url, destfile),
- condition = identity
- )
-
- if (!identical(status, 0L))
- return(FALSE)
-
- renv_bootstrap_download_augment(destfile)
-
- return(destfile)
-
- }
-
- # Add Sha to DESCRIPTION. This is stop gap until #890, after which we
- # can use renv::install() to fully capture metadata.
- renv_bootstrap_download_augment <- function(destfile) {
- sha <- renv_bootstrap_git_extract_sha1_tar(destfile)
- if (is.null(sha)) {
- return()
- }
-
- # Untar
- tempdir <- tempfile("renv-github-")
- on.exit(unlink(tempdir, recursive = TRUE), add = TRUE)
- untar(destfile, exdir = tempdir)
- pkgdir <- dir(tempdir, full.names = TRUE)[[1]]
-
- # Modify description
- desc_path <- file.path(pkgdir, "DESCRIPTION")
- desc_lines <- readLines(desc_path)
- remotes_fields <- c(
- "RemoteType: github",
- "RemoteHost: api.github.com",
- "RemoteRepo: renv",
- "RemoteUsername: rstudio",
- "RemotePkgRef: rstudio/renv",
- paste("RemoteRef: ", sha),
- paste("RemoteSha: ", sha)
- )
- writeLines(c(desc_lines[desc_lines != ""], remotes_fields), con = desc_path)
-
- # Re-tar
- local({
- old <- setwd(tempdir)
- on.exit(setwd(old), add = TRUE)
-
- tar(destfile, compression = "gzip")
- })
- invisible()
- }
-
- # Extract the commit hash from a git archive. Git archives include the SHA1
- # hash as the comment field of the tarball pax extended header
- # (see https://www.kernel.org/pub/software/scm/git/docs/git-archive.html)
- # For GitHub archives this should be the first header after the default one
- # (512 byte) header.
- renv_bootstrap_git_extract_sha1_tar <- function(bundle) {
-
- # open the bundle for reading
- # We use gzcon for everything because (from ?gzcon)
- # > Reading from a connection which does not supply a ‘gzip’ magic
- # > header is equivalent to reading from the original connection
- conn <- gzcon(file(bundle, open = "rb", raw = TRUE))
- on.exit(close(conn))
-
- # The default pax header is 512 bytes long and the first pax extended header
- # with the comment should be 51 bytes long
- # `52 comment=` (11 chars) + 40 byte SHA1 hash
- len <- 0x200 + 0x33
- res <- rawToChar(readBin(conn, "raw", n = len)[0x201:len])
-
- if (grepl("^52 comment=", res)) {
- sub("52 comment=", "", res)
- } else {
- NULL
- }
- }
-
- renv_bootstrap_install <- function(version, tarball, library) {
-
- # attempt to install it into project library
- dir.create(library, showWarnings = FALSE, recursive = TRUE)
- output <- renv_bootstrap_install_impl(library, tarball)
-
- # check for successful install
- status <- attr(output, "status")
- if (is.null(status) || identical(status, 0L))
- return(status)
-
- # an error occurred; report it
- header <- "installation of renv failed"
- lines <- paste(rep.int("=", nchar(header)), collapse = "")
- text <- paste(c(header, lines, output), collapse = "\n")
- stop(text)
-
- }
-
- renv_bootstrap_install_impl <- function(library, tarball) {
-
- # invoke using system2 so we can capture and report output
- bin <- R.home("bin")
- exe <- if (Sys.info()[["sysname"]] == "Windows") "R.exe" else "R"
- R <- file.path(bin, exe)
-
- args <- c(
- "--vanilla", "CMD", "INSTALL", "--no-multiarch",
- "-l", shQuote(path.expand(library)),
- shQuote(path.expand(tarball))
- )
-
- system2(R, args, stdout = TRUE, stderr = TRUE)
-
- }
-
- renv_bootstrap_platform_prefix <- function() {
-
- # construct version prefix
- version <- paste(R.version$major, R.version$minor, sep = ".")
- prefix <- paste("R", numeric_version(version)[1, 1:2], sep = "-")
-
- # include SVN revision for development versions of R
- # (to avoid sharing platform-specific artefacts with released versions of R)
- devel <-
- identical(R.version[["status"]], "Under development (unstable)") ||
- identical(R.version[["nickname"]], "Unsuffered Consequences")
-
- if (devel)
- prefix <- paste(prefix, R.version[["svn rev"]], sep = "-r")
-
- # build list of path components
- components <- c(prefix, R.version$platform)
-
- # include prefix if provided by user
- prefix <- renv_bootstrap_platform_prefix_impl()
- if (!is.na(prefix) && nzchar(prefix))
- components <- c(prefix, components)
-
- # build prefix
- paste(components, collapse = "/")
-
- }
-
- renv_bootstrap_platform_prefix_impl <- function() {
-
- # if an explicit prefix has been supplied, use it
- prefix <- Sys.getenv("RENV_PATHS_PREFIX", unset = NA)
- if (!is.na(prefix))
- return(prefix)
-
- # if the user has requested an automatic prefix, generate it
- auto <- Sys.getenv("RENV_PATHS_PREFIX_AUTO", unset = NA)
- if (auto %in% c("TRUE", "True", "true", "1"))
- return(renv_bootstrap_platform_prefix_auto())
-
- # empty string on failure
- ""
-
- }
-
- renv_bootstrap_platform_prefix_auto <- function() {
-
- prefix <- tryCatch(renv_bootstrap_platform_os(), error = identity)
- if (inherits(prefix, "error") || prefix %in% "unknown") {
-
- msg <- paste(
- "failed to infer current operating system",
- "please file a bug report at https://github.com/rstudio/renv/issues",
- sep = "; "
- )
-
- warning(msg)
-
- }
-
- prefix
-
- }
-
- renv_bootstrap_platform_os <- function() {
-
- sysinfo <- Sys.info()
- sysname <- sysinfo[["sysname"]]
-
- # handle Windows + macOS up front
- if (sysname == "Windows")
- return("windows")
- else if (sysname == "Darwin")
- return("macos")
-
- # check for os-release files
- for (file in c("/etc/os-release", "/usr/lib/os-release"))
- if (file.exists(file))
- return(renv_bootstrap_platform_os_via_os_release(file, sysinfo))
-
- # check for redhat-release files
- if (file.exists("/etc/redhat-release"))
- return(renv_bootstrap_platform_os_via_redhat_release())
-
- "unknown"
-
- }
-
- renv_bootstrap_platform_os_via_os_release <- function(file, sysinfo) {
-
- # read /etc/os-release
- release <- utils::read.table(
- file = file,
- sep = "=",
- quote = c("\"", "'"),
- col.names = c("Key", "Value"),
- comment.char = "#",
- stringsAsFactors = FALSE
- )
-
- vars <- as.list(release$Value)
- names(vars) <- release$Key
-
- # get os name
- os <- tolower(sysinfo[["sysname"]])
-
- # read id
- id <- "unknown"
- for (field in c("ID", "ID_LIKE")) {
- if (field %in% names(vars) && nzchar(vars[[field]])) {
- id <- vars[[field]]
- break
- }
- }
-
- # read version
- version <- "unknown"
- for (field in c("UBUNTU_CODENAME", "VERSION_CODENAME", "VERSION_ID", "BUILD_ID")) {
- if (field %in% names(vars) && nzchar(vars[[field]])) {
- version <- vars[[field]]
- break
- }
- }
-
- # join together
- paste(c(os, id, version), collapse = "-")
-
- }
-
- renv_bootstrap_platform_os_via_redhat_release <- function() {
-
- # read /etc/redhat-release
- contents <- readLines("/etc/redhat-release", warn = FALSE)
-
- # infer id
- id <- if (grepl("centos", contents, ignore.case = TRUE))
- "centos"
- else if (grepl("redhat", contents, ignore.case = TRUE))
- "redhat"
- else
- "unknown"
-
- # try to find a version component (very hacky)
- version <- "unknown"
-
- parts <- strsplit(contents, "[[:space:]]")[[1L]]
- for (part in parts) {
-
- nv <- tryCatch(numeric_version(part), error = identity)
- if (inherits(nv, "error"))
- next
-
- version <- nv[1, 1]
- break
-
- }
-
- paste(c("linux", id, version), collapse = "-")
-
- }
-
- renv_bootstrap_library_root_name <- function(project) {
-
- # use project name as-is if requested
- asis <- Sys.getenv("RENV_PATHS_LIBRARY_ROOT_ASIS", unset = "FALSE")
- if (asis)
- return(basename(project))
-
- # otherwise, disambiguate based on project's path
- id <- substring(renv_bootstrap_hash_text(project), 1L, 8L)
- paste(basename(project), id, sep = "-")
-
- }
-
- renv_bootstrap_library_root <- function(project) {
-
- prefix <- renv_bootstrap_profile_prefix()
-
- path <- Sys.getenv("RENV_PATHS_LIBRARY", unset = NA)
- if (!is.na(path))
- return(paste(c(path, prefix), collapse = "/"))
-
- path <- renv_bootstrap_library_root_impl(project)
- if (!is.null(path)) {
- name <- renv_bootstrap_library_root_name(project)
- return(paste(c(path, prefix, name), collapse = "/"))
- }
-
- renv_bootstrap_paths_renv("library", project = project)
-
- }
-
- renv_bootstrap_library_root_impl <- function(project) {
-
- root <- Sys.getenv("RENV_PATHS_LIBRARY_ROOT", unset = NA)
- if (!is.na(root))
- return(root)
-
- type <- renv_bootstrap_project_type(project)
- if (identical(type, "package")) {
- userdir <- renv_bootstrap_user_dir()
- return(file.path(userdir, "library"))
- }
-
- }
-
- renv_bootstrap_validate_version <- function(version, description = NULL) {
-
- # resolve description file
- description <- description %||% {
- path <- getNamespaceInfo("renv", "path")
- packageDescription("renv", lib.loc = dirname(path))
- }
-
- # check whether requested version 'version' matches loaded version of renv
- sha <- attr(version, "sha", exact = TRUE)
- valid <- if (!is.null(sha))
- renv_bootstrap_validate_version_dev(sha, description)
- else
- renv_bootstrap_validate_version_release(version, description)
-
- if (valid)
- return(TRUE)
-
- # the loaded version of renv doesn't match the requested version;
- # give the user instructions on how to proceed
- remote <- if (!is.null(description[["RemoteSha"]])) {
- paste("rstudio/renv", description[["RemoteSha"]], sep = "@")
- } else {
- paste("renv", description[["Version"]], sep = "@")
- }
-
- # display both loaded version + sha if available
- friendly <- renv_bootstrap_version_friendly(
- version = description[["Version"]],
- sha = description[["RemoteSha"]]
- )
-
- fmt <- paste(
- "renv %1$s was loaded from project library, but this project is configured to use renv %2$s.",
- "- Use `renv::record(\"%3$s\")` to record renv %1$s in the lockfile.",
- "- Use `renv::restore(packages = \"renv\")` to install renv %2$s into the project library.",
- sep = "\n"
- )
- catf(fmt, friendly, renv_bootstrap_version_friendly(version), remote)
-
- FALSE
-
- }
-
- renv_bootstrap_validate_version_dev <- function(version, description) {
- expected <- description[["RemoteSha"]]
- is.character(expected) && startswith(expected, version)
- }
-
- renv_bootstrap_validate_version_release <- function(version, description) {
- expected <- description[["Version"]]
- is.character(expected) && identical(expected, version)
- }
-
- renv_bootstrap_hash_text <- function(text) {
-
- hashfile <- tempfile("renv-hash-")
- on.exit(unlink(hashfile), add = TRUE)
-
- writeLines(text, con = hashfile)
- tools::md5sum(hashfile)
-
- }
-
- renv_bootstrap_load <- function(project, libpath, version) {
-
- # try to load renv from the project library
- if (!requireNamespace("renv", lib.loc = libpath, quietly = TRUE))
- return(FALSE)
-
- # warn if the version of renv loaded does not match
- renv_bootstrap_validate_version(version)
-
- # execute renv load hooks, if any
- hooks <- getHook("renv::autoload")
- for (hook in hooks)
- if (is.function(hook))
- tryCatch(hook(), error = warning)
-
- # load the project
- renv::load(project)
-
- TRUE
-
- }
-
- renv_bootstrap_profile_load <- function(project) {
-
- # if RENV_PROFILE is already set, just use that
- profile <- Sys.getenv("RENV_PROFILE", unset = NA)
- if (!is.na(profile) && nzchar(profile))
- return(profile)
-
- # check for a profile file (nothing to do if it doesn't exist)
- path <- renv_bootstrap_paths_renv("profile", profile = FALSE, project = project)
- if (!file.exists(path))
- return(NULL)
-
- # read the profile, and set it if it exists
- contents <- readLines(path, warn = FALSE)
- if (length(contents) == 0L)
- return(NULL)
-
- # set RENV_PROFILE
- profile <- contents[[1L]]
- if (!profile %in% c("", "default"))
- Sys.setenv(RENV_PROFILE = profile)
-
- profile
-
- }
-
- renv_bootstrap_profile_prefix <- function() {
- profile <- renv_bootstrap_profile_get()
- if (!is.null(profile))
- return(file.path("profiles", profile, "renv"))
- }
-
- renv_bootstrap_profile_get <- function() {
- profile <- Sys.getenv("RENV_PROFILE", unset = "")
- renv_bootstrap_profile_normalize(profile)
- }
-
- renv_bootstrap_profile_set <- function(profile) {
- profile <- renv_bootstrap_profile_normalize(profile)
- if (is.null(profile))
- Sys.unsetenv("RENV_PROFILE")
- else
- Sys.setenv(RENV_PROFILE = profile)
- }
-
- renv_bootstrap_profile_normalize <- function(profile) {
-
- if (is.null(profile) || profile %in% c("", "default"))
- return(NULL)
-
- profile
-
- }
-
- renv_bootstrap_path_absolute <- function(path) {
-
- substr(path, 1L, 1L) %in% c("~", "/", "\\") || (
- substr(path, 1L, 1L) %in% c(letters, LETTERS) &&
- substr(path, 2L, 3L) %in% c(":/", ":\\")
- )
-
- }
-
- renv_bootstrap_paths_renv <- function(..., profile = TRUE, project = NULL) {
- renv <- Sys.getenv("RENV_PATHS_RENV", unset = "renv")
- root <- if (renv_bootstrap_path_absolute(renv)) NULL else project
- prefix <- if (profile) renv_bootstrap_profile_prefix()
- components <- c(root, renv, prefix, ...)
- paste(components, collapse = "/")
- }
-
- renv_bootstrap_project_type <- function(path) {
-
- descpath <- file.path(path, "DESCRIPTION")
- if (!file.exists(descpath))
- return("unknown")
-
- desc <- tryCatch(
- read.dcf(descpath, all = TRUE),
- error = identity
- )
-
- if (inherits(desc, "error"))
- return("unknown")
-
- type <- desc$Type
- if (!is.null(type))
- return(tolower(type))
-
- package <- desc$Package
- if (!is.null(package))
- return("package")
-
- "unknown"
-
- }
-
- renv_bootstrap_user_dir <- function() {
- dir <- renv_bootstrap_user_dir_impl()
- path.expand(chartr("\\", "/", dir))
- }
-
- renv_bootstrap_user_dir_impl <- function() {
-
- # use local override if set
- override <- getOption("renv.userdir.override")
- if (!is.null(override))
- return(override)
-
- # use R_user_dir if available
- tools <- asNamespace("tools")
- if (is.function(tools$R_user_dir))
- return(tools$R_user_dir("renv", "cache"))
-
- # try using our own backfill for older versions of R
- envvars <- c("R_USER_CACHE_DIR", "XDG_CACHE_HOME")
- for (envvar in envvars) {
- root <- Sys.getenv(envvar, unset = NA)
- if (!is.na(root))
- return(file.path(root, "R/renv"))
- }
-
- # use platform-specific default fallbacks
- if (Sys.info()[["sysname"]] == "Windows")
- file.path(Sys.getenv("LOCALAPPDATA"), "R/cache/R/renv")
- else if (Sys.info()[["sysname"]] == "Darwin")
- "~/Library/Caches/org.R-project.R/R/renv"
- else
- "~/.cache/R/renv"
-
- }
-
- renv_bootstrap_version_friendly <- function(version, sha = NULL) {
- sha <- sha %||% attr(version, "sha", exact = TRUE)
- parts <- c(version, sprintf("[sha: %s]", substring(sha, 1L, 7L)))
- paste(parts, collapse = " ")
- }
-
- renv_bootstrap_run <- function(version, libpath) {
-
- # perform bootstrap
- bootstrap(version, libpath)
-
- # exit early if we're just testing bootstrap
- if (!is.na(Sys.getenv("RENV_BOOTSTRAP_INSTALL_ONLY", unset = NA)))
- return(TRUE)
-
- # try again to load
- if (requireNamespace("renv", lib.loc = libpath, quietly = TRUE)) {
- return(renv::load(project = getwd()))
- }
-
- # failed to download or load renv; warn the user
- msg <- c(
- "Failed to find an renv installation: the project will not be loaded.",
- "Use `renv::activate()` to re-initialize the project."
- )
-
- warning(paste(msg, collapse = "\n"), call. = FALSE)
-
- }
-
-
- renv_bootstrap_in_rstudio <- function() {
- commandArgs()[[1]] == "RStudio"
- }
-
- renv_json_read <- function(file = NULL, text = NULL) {
-
- jlerr <- NULL
-
- # if jsonlite is loaded, use that instead
- if ("jsonlite" %in% loadedNamespaces()) {
-
- json <- catch(renv_json_read_jsonlite(file, text))
- if (!inherits(json, "error"))
- return(json)
-
- jlerr <- json
-
- }
-
- # otherwise, fall back to the default JSON reader
- json <- catch(renv_json_read_default(file, text))
- if (!inherits(json, "error"))
- return(json)
-
- # report an error
- if (!is.null(jlerr))
- stop(jlerr)
- else
- stop(json)
-
- }
-
- renv_json_read_jsonlite <- function(file = NULL, text = NULL) {
- text <- paste(text %||% read(file), collapse = "\n")
- jsonlite::fromJSON(txt = text, simplifyVector = FALSE)
- }
-
- renv_json_read_default <- function(file = NULL, text = NULL) {
-
- # find strings in the JSON
- text <- paste(text %||% read(file), collapse = "\n")
- pattern <- '["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]'
- locs <- gregexpr(pattern, text, perl = TRUE)[[1]]
-
- # if any are found, replace them with placeholders
- replaced <- text
- strings <- character()
- replacements <- character()
-
- if (!identical(c(locs), -1L)) {
-
- # get the string values
- starts <- locs
- ends <- locs + attr(locs, "match.length") - 1L
- strings <- substring(text, starts, ends)
-
- # only keep those requiring escaping
- strings <- grep("[[\\]{}:]", strings, perl = TRUE, value = TRUE)
-
- # compute replacements
- replacements <- sprintf('"\032%i\032"', seq_along(strings))
-
- # replace the strings
- mapply(function(string, replacement) {
- replaced <<- sub(string, replacement, replaced, fixed = TRUE)
- }, strings, replacements)
-
- }
-
- # transform the JSON into something the R parser understands
- transformed <- replaced
- transformed <- gsub("{}", "`names<-`(list(), character())", transformed, fixed = TRUE)
- transformed <- gsub("[[{]", "list(", transformed, perl = TRUE)
- transformed <- gsub("[]}]", ")", transformed, perl = TRUE)
- transformed <- gsub(":", "=", transformed, fixed = TRUE)
- text <- paste(transformed, collapse = "\n")
-
- # parse it
- json <- parse(text = text, keep.source = FALSE, srcfile = NULL)[[1L]]
-
- # construct map between source strings, replaced strings
- map <- as.character(parse(text = strings))
- names(map) <- as.character(parse(text = replacements))
-
- # convert to list
- map <- as.list(map)
-
- # remap strings in object
- remapped <- renv_json_remap(json, map)
-
- # evaluate
- eval(remapped, envir = baseenv())
-
- }
-
- renv_json_remap <- function(json, map) {
-
- # fix names
- if (!is.null(names(json))) {
- lhs <- match(names(json), names(map), nomatch = 0L)
- rhs <- match(names(map), names(json), nomatch = 0L)
- names(json)[rhs] <- map[lhs]
- }
-
- # fix values
- if (is.character(json))
- return(map[[json]] %||% json)
-
- # handle true, false, null
- if (is.name(json)) {
- text <- as.character(json)
- if (text == "true")
- return(TRUE)
- else if (text == "false")
- return(FALSE)
- else if (text == "null")
- return(NULL)
- }
-
- # recurse
- if (is.recursive(json)) {
- for (i in seq_along(json)) {
- json[i] <- list(renv_json_remap(json[[i]], map))
- }
- }
-
- json
-
- }
-
- # load the renv profile, if any
- renv_bootstrap_profile_load(project)
-
- # construct path to library root
- root <- renv_bootstrap_library_root(project)
-
- # construct library prefix for platform
- prefix <- renv_bootstrap_platform_prefix()
-
- # construct full libpath
- libpath <- file.path(root, prefix)
-
- # attempt to load
- if (renv_bootstrap_load(project, libpath, version))
- return(TRUE)
-
- if (renv_bootstrap_in_rstudio()) {
- setHook("rstudio.sessionInit", function(...) {
- renv_bootstrap_run(version, libpath)
-
- # Work around buglet in RStudio if hook uses readline
- tryCatch(
- {
- tools <- as.environment("tools:rstudio")
- tools$.rs.api.sendToConsole("", echo = FALSE, focus = FALSE)
- },
- error = function(cnd) {}
- )
- })
- } else {
- renv_bootstrap_run(version, libpath)
- }
-
- invisible()
-
-})
diff --git a/crossbow-nightly-report/renv/settings.json b/crossbow-nightly-report/renv/settings.json
deleted file mode 100644
index ffdbb3200f7..00000000000
--- a/crossbow-nightly-report/renv/settings.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "bioconductor.version": null,
- "external.libraries": [],
- "ignored.packages": [],
- "package.dependency.fields": [
- "Imports",
- "Depends",
- "LinkingTo"
- ],
- "ppm.enabled": null,
- "ppm.ignored.urls": [],
- "r.version": null,
- "snapshot.type": "implicit",
- "use.cache": true,
- "vcs.ignore.cellar": true,
- "vcs.ignore.library": true,
- "vcs.ignore.local": true,
- "vcs.manage.ignores": true
-}
diff --git a/csv_reports/nightly-packaging-2022-05-12-0.csv b/csv_reports/nightly-packaging-2022-05-12-0.csv
deleted file mode 100644
index 70b0e799c85..00000000000
--- a/csv_reports/nightly-packaging-2022-05-12-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402074189?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402025852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402096487?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402034182?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402109457?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402067256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6402086615?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6402595914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6402735561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6403068070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6404289590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6402722917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6403215246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6404629189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6402782737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6403637567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6403430978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6402605285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6402564710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6403889880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6403230053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6402633029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6404081672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6402522727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6404052236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6403290224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6404062045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6404051235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6403851921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6402778302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6403084673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6403959242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6404323509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6404333562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6403850883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6403327615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.1'}",conda-recipes/azure.win.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6404769606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6403387482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402018122?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402071864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402022010?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402113373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402057692?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6402118820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6402132077?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6402133129?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6402124472?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6403785772?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6402129605?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6402129437?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-java-jars,github,{},java-jars/github.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6402114970?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6402078369?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-python-sdist,github,{},python-sdist/github.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402139941?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402115988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402016603?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402044573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402027880?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6402125366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402076920?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6402120171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402111088?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/6402049879?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402101660?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402095312?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/6402032782?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402053139?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402107430?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402134342?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402047455?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402085638?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402070854?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402069367?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402043621?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402064923?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402097762?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402081133?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402019938?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402108455?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402079507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402037980?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402063562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402023398?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402103987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402015621?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6402028694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402091055?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6402056720?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402046444?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6402089762?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-12-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c
diff --git a/csv_reports/nightly-packaging-2022-05-13-0.csv b/csv_reports/nightly-packaging-2022-05-13-0.csv
deleted file mode 100644
index 6273dff0f15..00000000000
--- a/csv_reports/nightly-packaging-2022-05-13-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419518691?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419474296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419529580?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419541830?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419560297?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419562995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6419492755?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6419507380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6420616970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6419920383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6419915041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6419962217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6420559108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6420570603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6421515751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6419911150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6420657590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6421217771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6421384085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6421478349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6420523792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419961845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6420974788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6420376879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6420025788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6420966119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6420042179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6420228416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6421440504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6420495216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6422179327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6421458167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6420331493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6421525943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6421680726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6420879541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.1'}",conda-recipes/azure.win.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6421576727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6421050280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419561892?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419526962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419537584?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419574843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419505987?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419546859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6419570477?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6419549429?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6419533579?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6419878882?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6419528973?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6419528838?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-java-jars,github,{},java-jars/github.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6419476137?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6419574457?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-python-sdist,github,{},python-sdist/github.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419472233?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419522236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419571494?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419540194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419471281?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419478368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419553670?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419480734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419578570?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/6419517309?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419489180?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6419507538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/6419534768?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419552069?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419482666?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419521432?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419556671?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-mavericks-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6419546213?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419524872?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419470023?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419531141?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419477803?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419494109?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419567015?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419569467?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419473613?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419537964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419555229?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419580622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419513345?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419532154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419577479?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6419497643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419539519?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419505001?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419483889?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d9346927a0cb79c53464c43c9f991907fca63f10
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6419550677?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-13-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d9346927a0cb79c53464c43c9f991907fca63f10
diff --git a/csv_reports/nightly-packaging-2022-05-14-0.csv b/csv_reports/nightly-packaging-2022-05-14-0.csv
deleted file mode 100644
index 313a891fad3..00000000000
--- a/csv_reports/nightly-packaging-2022-05-14-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433397175?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433411635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433406904?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433416827?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433388297?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433391775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6433404744?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6433683970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433767904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6433927291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6433906032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6433762407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6434071847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6433787210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6433588071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6433859073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6433542011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433902244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6433891869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6433548534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6433574821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433560003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6433536499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6433518998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6434121928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6433734543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6434046460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6433618024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6433940481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6433924416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6434139088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6433788217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6434115935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6433857814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6434135907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6433717051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.1'}",conda-recipes/azure.win.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6433673820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6433885430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433395774?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433408694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433410698?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433390433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433394832?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433380423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6433399574?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6433380122?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6433403867?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6434064073?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6433416163?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6433416138?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-java-jars,github,{},java-jars/github.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6433393278?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6433393561?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-python-sdist,github,{},python-sdist/github.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433376974?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433387039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433398011?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433409672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433386706?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433398649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433402293?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433380827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433375609?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/6433387546?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6433395387?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6433377275?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6433412794?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433413696?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433412092?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433391316?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433374696?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433415238?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433415728?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433379471?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433414829?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433389892?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433406002?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433417536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433406487?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433394268?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433381927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433401300?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433384911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433413990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433388734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433400568?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6433414219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433378444?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433401850?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433384485?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6433401029?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,390fb095b0cdd6b1116d083485fcc2debaf04aad
diff --git a/csv_reports/nightly-packaging-2022-05-15-0.csv b/csv_reports/nightly-packaging-2022-05-15-0.csv
deleted file mode 100644
index 22cc5fcf384..00000000000
--- a/csv_reports/nightly-packaging-2022-05-15-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439716250?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439728197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439713968?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439724058?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439731203?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439738442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6439710266?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6440029388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6440678212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6440119095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6440432750'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/6440744122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6440504103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6440104334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6440247111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6440086237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6440057176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6440632804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6440086953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6440749567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6440308436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6440571508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6440569137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6440214725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6440326656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6440504205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6440428638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6440321440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6440591924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6440354055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6440782627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6440657615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6440339072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6440283849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6440905971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6440958123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.1'}",conda-recipes/azure.win.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6440481607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6440755432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439724742?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439730565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439743276?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439732615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439733373?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439722956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6439736432?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6439744475?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6439715048?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6441145183?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6439739320?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6439739275?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-java-jars,github,{},java-jars/github.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6439732047?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6439724479?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-python-sdist,github,{},python-sdist/github.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439738265?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439728819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439705779?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439719963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439709476?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439742681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439707374?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439706829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439718092?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6439744859?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6439719402?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6439718776?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/6439746113?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439729711?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6439704032?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439735947?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439727849?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439734813?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439742375?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439721395?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439738859?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439731771?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439722598?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439736914?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439743929?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439722122?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439725660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439734443?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439711976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439734254?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439719577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439726368?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6439704205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439733921?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439704968?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439737663?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6439745403?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-15-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5c684c20748aa9b8fca9ccd1fa5375ebadb0ff20
diff --git a/csv_reports/nightly-packaging-2022-05-16-0.csv b/csv_reports/nightly-packaging-2022-05-16-0.csv
deleted file mode 100644
index 986f2ce3ef9..00000000000
--- a/csv_reports/nightly-packaging-2022-05-16-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448761172?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448778066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448861624?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448813215?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448857637?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448840572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6448837895?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6452290651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6451364478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6451949309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6452433587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6453022526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6452423526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6451366414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6452257119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6453017244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6452792510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6453126668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6453490576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6452885047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6452067801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6451469771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6452793698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6451907321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6452445559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6453276841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6453712616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6452429713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6451711743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6451790268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6454336821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6454109668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6451610487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6452965103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6452439985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6454019425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.1'}",conda-recipes/azure.win.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6452508967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6453989970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448850650?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448795528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448817066?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448815589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448853559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448869243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6448833733?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6448785944?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6448792210?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6453770826?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6448799781?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6448799674?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-java-jars,github,{},java-jars/github.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6448810292?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6448766905?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-python-sdist,github,{},python-sdist/github.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448858856?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448842038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448805720?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448874514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448860427?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448878392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448787757?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448775198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6448789105?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6448865816?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448777378?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6448867118?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/6448826773?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448793452?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448848049?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448832154?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448800942?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448880015?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448856612?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448763981?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448770428?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448797194?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448769489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448868489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448835141?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448794910?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448798256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448814528?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448827704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448781276?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448845017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448829757?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6448764681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448804248?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448836577?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448821302?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6448863200?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,40456a8731139e8bb6c3cbb07aefe8add3173137
diff --git a/csv_reports/nightly-packaging-2022-05-17-0.csv b/csv_reports/nightly-packaging-2022-05-17-0.csv
deleted file mode 100644
index 24116daac82..00000000000
--- a/csv_reports/nightly-packaging-2022-05-17-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466754980?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466698006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466676073?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466692046?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466737418?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466729142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6466689622?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6466723869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6468314738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6468951679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6467861134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6467216404'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6467450365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6467208100'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6467363126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6468930233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6467213500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6467434603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6467133031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6467702880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6467378025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6469344699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6468325426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6467860273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6467839890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6468967871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6467339072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6468673169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6468872965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6468656920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6468602021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6468466296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6467756484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6469854685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6469068035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6469472687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.1'}",conda-recipes/azure.win.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6468333645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,acbfd60ded8046e6e725115db74ead639505fe26
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6469235523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,acbfd60ded8046e6e725115db74ead639505fe26
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6466736313?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466706291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466718184?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466678610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466765300?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466711213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6466770782?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,acbfd60ded8046e6e725115db74ead639505fe26
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6466671427?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,acbfd60ded8046e6e725115db74ead639505fe26
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6466748564?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,acbfd60ded8046e6e725115db74ead639505fe26
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6467072489?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6466673193?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6466673033?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-java-jars,github,{},java-jars/github.yml,acbfd60ded8046e6e725115db74ead639505fe26
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6466687753?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,acbfd60ded8046e6e725115db74ead639505fe26
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6466677385?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-python-sdist,github,{},python-sdist/github.yml,acbfd60ded8046e6e725115db74ead639505fe26
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466662058?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466684508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466665355?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466707588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466714685?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466694558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466652282?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466704488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466681197?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/6466747038?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466761238?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466764008?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6475716117?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466696789?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466728167?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466734990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466664110?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466771836?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466749322?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466745644?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466758279?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466738491?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466743941?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466683706?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466740879?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466686662?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466656396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466723989?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466708733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466674795?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466693531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466721474?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6466732788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466767924?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466716128?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466717022?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,acbfd60ded8046e6e725115db74ead639505fe26
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6466731786?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-17-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,acbfd60ded8046e6e725115db74ead639505fe26
diff --git a/csv_reports/nightly-packaging-2022-05-18-0.csv b/csv_reports/nightly-packaging-2022-05-18-0.csv
deleted file mode 100644
index 60f5b65755d..00000000000
--- a/csv_reports/nightly-packaging-2022-05-18-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485371528?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485331110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485361211?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485295282?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485314536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485322517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6485380414?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6486504555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6486607331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6486962993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6485863960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6486468774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6486803039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6486423658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6485868513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6486619236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6485942232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6487244889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6485736957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6486699942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6487489698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6487528313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6487344415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6486911553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6485889467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6488043581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6487582122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6487625509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6486925058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6488474349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6486470847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6486202455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6486242578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6487700491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6486990848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6487635400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.1'}",conda-recipes/azure.win.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6487993864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6487707490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485318521?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485394606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485363845?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485327056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485333009?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485316149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6485337370?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6485301518?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6485365099?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6485630524?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6485287881?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6485287763?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-java-jars,github,{},java-jars/github.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6485352149?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6485389963?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-python-sdist,github,{},python-sdist/github.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485305781?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6485377946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485359159?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485410369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485310604?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485368136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485288982?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485293396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485406652?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6485328808?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485306967?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485392381?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6485404203?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485346272?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485402901?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485372706?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485319612?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485383425?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485382140?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485311916?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485339020?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485299515?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485356781?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485326210?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485400042?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485350482?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485347486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485386254?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485384392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485367737?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485386785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485309187?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6485297768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485330253?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485396860?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485374046?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6485399243?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-18-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,0742f78a27fa9d7882c7a840c117824e03bee82d
diff --git a/csv_reports/nightly-packaging-2022-05-19-0.csv b/csv_reports/nightly-packaging-2022-05-19-0.csv
deleted file mode 100644
index 94b756121dc..00000000000
--- a/csv_reports/nightly-packaging-2022-05-19-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503310723?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503384012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503282949?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503280418?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503305330?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503331974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6503338882?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6503328540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6505455518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6503731451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6504740030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6503864444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6505262802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6505465308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6504870260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6505368499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6503959102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503825216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6504429284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6503878445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6504369313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503984909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6505000631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6504846291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6505669823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6505453165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6505794788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6503938968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6504222048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6506224609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6505142022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6505837870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6504982664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6504825672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6504535078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6505078289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6504172367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6504912196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503302826?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503332591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503342520?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503358398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503331011?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503367321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6503272016?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6503349977?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6503348164?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6503706640?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6503314904?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6503314760?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-java-jars,github,{},java-jars/github.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6503334101?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6503313689?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-python-sdist,github,{},python-sdist/github.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503345254?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503376277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503381840?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503284679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503351279?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503286423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503375632?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503371750'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503362977?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6503372207?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6503319218?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503355306?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6503291337?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503377449?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503343940?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503276972?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503328241?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503339954?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6503270074?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503370137?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503361737?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503308395?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503368969?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503304103?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503385411?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503320750?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503326611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503275894?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503357156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503292880?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503306509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503347773?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6503283466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503322198?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503324448?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503360627?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6503316558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,0a0d7fea9550b48706cf678036eaa8ddb1ef2be8
diff --git a/csv_reports/nightly-packaging-2022-05-20-0.csv b/csv_reports/nightly-packaging-2022-05-20-0.csv
deleted file mode 100644
index 8cc66bd0cef..00000000000
--- a/csv_reports/nightly-packaging-2022-05-20-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521208875?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521166544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521153452?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521192492?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521179118?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521215603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6521213809?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6524099791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6524792143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6524030757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6524233744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6524622693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6525114509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6524090991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6525326114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6524324810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6523675896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6523688316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6524548769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6525239701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6525086996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6524864317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6525361633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6524571305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6524138392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6525375864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6525486916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6524789071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6523836773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6524111295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6524641510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6524820392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6525129392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6523574510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6524068168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6524527085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6523618025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6525618841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521244209?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521196964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521172065?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521227449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521194754?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521226158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/6521181794?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6521252210?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6521250806?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/runs/6523057135?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6521205154?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6521204951?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-java-jars,github,{},java-jars/github.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6521175029?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6521233669?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-python-sdist,github,{},python-sdist/github.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521150312?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521175927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521230606?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521159610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521218697?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521221064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521162125?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521249516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521148316?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6521190840?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6521183062?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521145579?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6521212593?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521220492?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6521146899?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6521193525?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6521177915?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-mavericks-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6521186945?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6521144297?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521240126?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-macos-mavericks-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6521169888?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521152324?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521206299?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521222947?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521198787?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521248152?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521141777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521170643?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521223414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521235010?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521155565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521215164?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6521185013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521242795?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521199745?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521239221?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6521203796?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,c5a175dd61b3fa94a38b918c1cc3d7b4ffaefba7
diff --git a/csv_reports/nightly-packaging-2022-05-21-0.csv b/csv_reports/nightly-packaging-2022-05-21-0.csv
deleted file mode 100644
index 655aad7275b..00000000000
--- a/csv_reports/nightly-packaging-2022-05-21-0.csv
+++ /dev/null
@@ -1,89 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535710388?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535735514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535722538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535728927?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535716917?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535707871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6535699696?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6535736507?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6536181110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6536089130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6536080549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6536028425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6536237894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535875343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6536082499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6535887354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6535874938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6535902824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6536431662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6536350434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6535875047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6536152521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6536201474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6536178596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6535842282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6536313786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6536429383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6535881375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6536340892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6536168610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6536019561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6536248436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6536429187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6535950898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6536449415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6536224903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6536481336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6536428970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6535955325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535719423?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535698991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535735961?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535722074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535719774?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535724471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6535711712?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6535696813?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6535714936?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6536219307?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6535727496?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6535727449?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-java-jars,github,{},java-jars/github.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6535730100?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6535718600?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-python-sdist,github,{},python-sdist/github.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535712020?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535715287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535703600?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535728218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535716106?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535733208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535732396?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535717441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535706724?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6535732815?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6535712719?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535700744?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6535729290?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535702240?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535729564?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535731658?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535700423?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535723841?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535726713?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535701468?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535716530?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535733737?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535696400?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535736300?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535724274?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535724982?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535695520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535717217?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535722816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535726394?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535725242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535719165?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6535705425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535709641?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535711242?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535727939?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6535730823?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-21-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,c544a8bb025d5fb1226637780275c8753f81dcb3
diff --git a/csv_reports/nightly-packaging-2022-05-22-0.csv b/csv_reports/nightly-packaging-2022-05-22-0.csv
deleted file mode 100644
index 95331d8771b..00000000000
--- a/csv_reports/nightly-packaging-2022-05-22-0.csv
+++ /dev/null
@@ -1,89 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542378908?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-almalinux-8-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542403689?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542401926?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542393914?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542390748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6542411490?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6542371934?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6542942417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542900328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6542775218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6542551708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6542798189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542749069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6542623347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6542891254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6543031224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6542776279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542938067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6543044091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6543088843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6542980509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6543094325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6542926968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6542516469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6542595147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6542877006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6542626168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6542934063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6542874604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6543163609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6542697575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6542629418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6542673864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6542696342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6543306077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6542753291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6543034983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6543263598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542381959?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542404737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542409155?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542411956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542395888?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542383691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6542397577?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d4a7638477769e788030af1e75d55873a92b770b
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6542396697?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d4a7638477769e788030af1e75d55873a92b770b
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6542385577?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d4a7638477769e788030af1e75d55873a92b770b
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6542498420?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6542383185?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6542383111?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-java-jars,github,{},java-jars/github.yml,d4a7638477769e788030af1e75d55873a92b770b
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6542386677?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6542387108?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-python-sdist,github,{},python-sdist/github.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542408791?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542401125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542413694?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542375821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542400122?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542377123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542410779?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542399692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542407350?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6542391560?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542406017?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542378092?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6542379734?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542413295?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542394265?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542396317?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542408241?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542402366?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542390328?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542389801?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542391204?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542392268?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542401562?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542382169?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542384731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542376590?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542404124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542392808?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542410984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542376239?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542397893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542387872?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6542414339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542405356?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542388439?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542406488?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6542380249?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-22-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d4a7638477769e788030af1e75d55873a92b770b
diff --git a/csv_reports/nightly-packaging-2022-05-23-0.csv b/csv_reports/nightly-packaging-2022-05-23-0.csv
deleted file mode 100644
index 537865ed0e6..00000000000
--- a/csv_reports/nightly-packaging-2022-05-23-0.csv
+++ /dev/null
@@ -1,89 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551299792?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551327757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551344692?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551351054?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551343263?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6551250931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6551255968?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6551282160?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6552925123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551787925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6553173986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6551746702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6551890156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6552031764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6553717738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6553728292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6553300669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6551833623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6553214430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6552285363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6552408217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6552916967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6552513056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6552889943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6551776103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6552698939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6552116158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6553116081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6552733892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6552898932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6554202779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6553090135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6552360706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6554000044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6554071347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6553854776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6553622669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6552438628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d4a7638477769e788030af1e75d55873a92b770b
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6552440287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551362834?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551274221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551349925?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551303501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551291620?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551289029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6551277734?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d4a7638477769e788030af1e75d55873a92b770b
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6551276088?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d4a7638477769e788030af1e75d55873a92b770b
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6551329161?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d4a7638477769e788030af1e75d55873a92b770b
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6552927616?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6551356334?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6551356177?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-java-jars,github,{},java-jars/github.yml,d4a7638477769e788030af1e75d55873a92b770b
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6551298629?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d4a7638477769e788030af1e75d55873a92b770b
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6551273522?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-python-sdist,github,{},python-sdist/github.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551304973?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551286020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551364198?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551271611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551334012?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551256864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551313276?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551313908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551335392?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6551338141?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6551310824?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551315525?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6551283009?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551293222?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6551249736?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551285081?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551332239?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551367893?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551309103?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551302742?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551345820?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551267210?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551339139?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551340251?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551326068?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551358753?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551357206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551336806?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551265621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551353802?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551261063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551323358?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6551268291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551319339?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551347955?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551307720?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d4a7638477769e788030af1e75d55873a92b770b
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6551264755?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-23-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d4a7638477769e788030af1e75d55873a92b770b
diff --git a/csv_reports/nightly-packaging-2022-05-24-0.csv b/csv_reports/nightly-packaging-2022-05-24-0.csv
deleted file mode 100644
index 7762e98fa39..00000000000
--- a/csv_reports/nightly-packaging-2022-05-24-0.csv
+++ /dev/null
@@ -1,89 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569289161?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569408371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569406378?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569318684?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569388718?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569379912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6569317982?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6569359197?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6570152732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6571432463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6569880457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6569837812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6569964589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6571868144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6570816422'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6572012505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6570413223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6570934358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6571161276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6571644948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6571654183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6571768451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6570113776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6571419284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6571655624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6572050063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6570119022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6569973112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6570099086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6571029495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6570515004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6571356651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6571083269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6570132018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6571097910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6571632051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6570975399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6571366503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6572474506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569312933?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569359768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569331716?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569364215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569410212?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569304268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6569349912?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6569303014?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6569387052?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6569695926?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6569286645?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6569286540?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-java-jars,github,{},java-jars/github.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6569363128?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6569305930?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-python-sdist,github,{},python-sdist/github.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569336752?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569375179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569339831?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569354612'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569334958?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569337400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569383601?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569300869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569343776?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6569402289?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569290780?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569328547?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6569346957?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569356479?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569320324?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569361848?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569377391?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569369232?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569384598?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569287831?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569379124?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569382218?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569333255?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569366493?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569394480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569352462?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569323280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569373271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569283230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569367832?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569324860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569391413?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6569326633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569294083?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569353379?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569307521?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6569285509?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,6576aa06fdff9b4f00aa1bb59fd679b3aaa856dc
diff --git a/csv_reports/nightly-packaging-2022-05-25-0.csv b/csv_reports/nightly-packaging-2022-05-25-0.csv
deleted file mode 100644
index 021616bd4c5..00000000000
--- a/csv_reports/nightly-packaging-2022-05-25-0.csv
+++ /dev/null
@@ -1,89 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588154678?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588164489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588208548?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588185400?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588261849?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588219108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6588252159?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6588201820?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6589099532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6589650380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6590307712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6590024655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6590696692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6589452008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6588864542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6588856943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6590203307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6588868787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6589841884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6589348028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6588760059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6590179217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6590059152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6588799694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6589260717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6589509088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6590786951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6589067277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6589054156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6591145691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6590619355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6590438783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6590340636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6590425148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6591547995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6589456429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6589352153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6589634426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6590147595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588176250?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588141492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588230369?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588172022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588225757?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588210777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6588186289?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6588234228?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6588190979?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6589949970?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6588237920?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6588237788?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-java-jars,github,{},java-jars/github.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6588242734?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6588206219?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-python-sdist,github,{},python-sdist/github.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588160153?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588203287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588235275?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588148901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588227621?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588262627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588140698?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588238760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588218038?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/6588144510?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6588166289?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588180762?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6588241723?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588156287?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588212148?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588167233?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588240240?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588228990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588161685?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588256303?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588173645?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588149890?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588245661?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588152475?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588199113?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588182160?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588246211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588260517?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588209669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588187924?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588258391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588204489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6588216286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588251011?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588195741?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588183630?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5994fd88259b8a6ee0efef7233d75352b7360188
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6588223579?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5994fd88259b8a6ee0efef7233d75352b7360188
diff --git a/csv_reports/nightly-packaging-2022-05-26-0.csv b/csv_reports/nightly-packaging-2022-05-26-0.csv
deleted file mode 100644
index 4ec0653a92e..00000000000
--- a/csv_reports/nightly-packaging-2022-05-26-0.csv
+++ /dev/null
@@ -1,89 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606278640?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606264992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606276224?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606282942?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606261414?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606285123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6606269607?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6606266383?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6606741726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606790633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6606644917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6607182595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6607144719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6608104231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6606729066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6608086065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6606685972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6607155145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606670251'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6607630497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6607630889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6607164460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606717689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6607244549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6608088154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6607681974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6607602635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6607416219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6607828343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6606865762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6608351343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6607166157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6607660337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6608312953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6606933035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6608006070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6608221550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6607259364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,841e905fb461561179f44ad6705146a9939613bc
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6607894674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,841e905fb461561179f44ad6705146a9939613bc
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606242419?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606294864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606308989?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606240845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606279811?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606244161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6606260657?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,841e905fb461561179f44ad6705146a9939613bc
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6606236632?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,841e905fb461561179f44ad6705146a9939613bc
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6606227743?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,841e905fb461561179f44ad6705146a9939613bc
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6606483566?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6606238045?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6606237857?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-java-jars,github,{},java-jars/github.yml,841e905fb461561179f44ad6705146a9939613bc
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6606258894?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,841e905fb461561179f44ad6705146a9939613bc
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6606296236?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-python-sdist,github,{},python-sdist/github.yml,841e905fb461561179f44ad6705146a9939613bc
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606268729?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606289625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606248760?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606263023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606307682?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606312069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606297309?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606228398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606264566?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6606309781?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606277993?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606232233?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6606257680?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606310827?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606306526?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606254403?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606235744?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606277180?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606252122?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606304731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606252943?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606301936?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606281028?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606286544?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606229753?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606299281?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606267539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606230977?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606256217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606315584?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606297811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606288236?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6606243108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606255349?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606300014?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606225189?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,841e905fb461561179f44ad6705146a9939613bc
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6606287286?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-26-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,841e905fb461561179f44ad6705146a9939613bc
diff --git a/csv_reports/nightly-packaging-2022-05-30-0.csv b/csv_reports/nightly-packaging-2022-05-30-0.csv
deleted file mode 100644
index 49c16b2e72a..00000000000
--- a/csv_reports/nightly-packaging-2022-05-30-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650855517?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650902906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650826490?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650899198?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650880115?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650886082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6650915343?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6650901626?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6650853645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6651391316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6652632304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6651823835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6653209123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6651423302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6652395805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6651841041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6652591083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6652512587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6651360097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6652543137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6651274987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6651516682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6653420176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6653013348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6651964703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6652199600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6653488338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6652645979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6653029644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6651802599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6653854778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6652095910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6651907769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6653175762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6652574410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6652749570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6653764982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/6652987567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/6652001401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650906758?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650856565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650893264?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650847924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650909273?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650841240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6650834341?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6650859463?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-homebrew-r-brew,pending,['https://github.com/ursacomputing/crossbow/runs/6650919658?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-java-jars,pending,"['https://github.com/ursacomputing/crossbow/runs/6654519209?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6650908072?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6650907941?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-java-jars,github,{},java-jars/github.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6650918010?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6650851410?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-python-sdist,github,{},python-sdist/github.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-r-nightly-packages,pending,"['https://github.com/ursacomputing/crossbow/runs/6658436455?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6651752550?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6651752468?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6651752375?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6651752255?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6651311942?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6651311874?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6651311800?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6651311715?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6651311624?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6651311522?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6650846404?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6650846303?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6650846129?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6650845891?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6650838709?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-r-nightly-packages,github,{},r/github.nightly.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650846715?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650862295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650839917?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650916137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650934173?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650875695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650864910?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650888672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650888254?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6650900624?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650818796?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650822611?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6650870654?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650929273?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650830569?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650935190?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650843909?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650878901?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650864072?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650927394?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650889974?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650873398?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650898252?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650869514?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650852927?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650854536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650860851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650891684?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650884786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650923791?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650841970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650866691?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6650881812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650930451?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650828178?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650904214?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6650926328?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-30-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,84a8d6bf6dea7b1762c68cc00d5696f78346f72a
diff --git a/csv_reports/nightly-packaging-2022-05-31-0.csv b/csv_reports/nightly-packaging-2022-05-31-0.csv
deleted file mode 100644
index 6309aa5482e..00000000000
--- a/csv_reports/nightly-packaging-2022-05-31-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666654037?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666705696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666675683?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666671978?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666697566?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666685652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6666689709?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6666699920?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6667737781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6668349201'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6667244834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6668839163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6667535435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6667728584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6668103942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6668280731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6668353159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6667874317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6668501848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6667193045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6667084303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6668504210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6668464515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6667053021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6668635407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6667160112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6668516770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6668505237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6667743576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6668689212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6667658844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6667841889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6667635443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6667619200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6667421319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6667602449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6667698084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/6666921416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/6667964276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666655652?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666709159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666624463?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666708104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666646610?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666610797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6666638814?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6666626700?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6666620567?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6667065507?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6666635016?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6666634888?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-java-jars,github,{},java-jars/github.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6666640319?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6666692525?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-python-sdist,github,{},python-sdist/github.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6669255934?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6667562730?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6667562632?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6667562538?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6667562383?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6667019555?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6667019462?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6667019384?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6667019292?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6667019171?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6667019078?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6666637021?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6666636850?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6666636617?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6666636426?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6666628069?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-r-nightly-packages,github,{},r/github.nightly.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666647784?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666688027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666637537?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666676008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666631293?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666691427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666616842?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666622470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666673123?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6666690686?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666705000?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666605936?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6666668460?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666629627?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666650354?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666680328?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666701130?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666693666?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666703492?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666657417?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666696727?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666687143?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666643735?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666625531?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666641780?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666658944?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666682401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666608696?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666695145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666683705?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666650940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666677793?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6666663412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666702491?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666651336?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666615353?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,56cdaae781ba792df8b085ff4022796344b06e3b
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6666712939?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-05-31-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,56cdaae781ba792df8b085ff4022796344b06e3b
diff --git a/csv_reports/nightly-packaging-2022-06-01-0.csv b/csv_reports/nightly-packaging-2022-06-01-0.csv
deleted file mode 100644
index 88d17cddc7e..00000000000
--- a/csv_reports/nightly-packaging-2022-06-01-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685228759?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685270811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685260694?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685269248?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685175335?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685243534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6685215561?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6685232990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6686706318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6686294437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6686531667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6685684194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6685756095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6687031804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6686301782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6686721693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6687167370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6686778333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6686466726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6686271827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6686679233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6685883002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685928447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6685992913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6685677742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6686970072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6687259933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6686902517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6687181921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6687235441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6686431119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6686492249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6686118270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6686876142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6685492351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6686973856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6685688090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/6685950892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,2eb257379062a5c349017397fd64a2b27bae3056
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/6686281910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,2eb257379062a5c349017397fd64a2b27bae3056
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685275783?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685253281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685183830?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685250273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685235418?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685184088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6685210157?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,2eb257379062a5c349017397fd64a2b27bae3056
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6685281020?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,2eb257379062a5c349017397fd64a2b27bae3056
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6685266963?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,2eb257379062a5c349017397fd64a2b27bae3056
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6686868613?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685252255?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685251446?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-java-jars,github,{},java-jars/github.yml,2eb257379062a5c349017397fd64a2b27bae3056
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6685206609?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,2eb257379062a5c349017397fd64a2b27bae3056
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6685230565?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-python-sdist,github,{},python-sdist/github.yml,2eb257379062a5c349017397fd64a2b27bae3056
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6687503646?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6686273589?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6686273469?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6686273347?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6686273225?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685857184?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685857066?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685856963?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685856869?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685856774?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685856684?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685287499?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685287366?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685287063?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685286883?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6685275595?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-r-nightly-packages,github,{},r/github.nightly.yml,2eb257379062a5c349017397fd64a2b27bae3056
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685188757?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685235848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685186165?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685254961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685208112?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685286432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685226299?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685261448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685267104?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6685209749?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685180009?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685283914?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6685181461?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685201615?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685237076?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685221298?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685241918?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685211135?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685269319?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-mavericks-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6685217472?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685215027?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685195321?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685174006?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685257971?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685252447?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685196534?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685239468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685258869?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685219267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685276525?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685247091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685172134?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6685201814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685191437?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685198228?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685256419?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,2eb257379062a5c349017397fd64a2b27bae3056
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6685218257?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,2eb257379062a5c349017397fd64a2b27bae3056
diff --git a/csv_reports/nightly-packaging-2022-06-03-0.csv b/csv_reports/nightly-packaging-2022-06-03-0.csv
deleted file mode 100644
index 4e20725f741..00000000000
--- a/csv_reports/nightly-packaging-2022-06-03-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722368691?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6722396077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722373875?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-centos-7-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722349757?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722424996?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6722374517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6722367759?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6722433901?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6723613646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6722858644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6723120543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6723925449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6723533337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6723584549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6724028481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6723407164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6724055945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6723725670'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6722878021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6723559049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6723580992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6724074677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6722896701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6723507315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6722910519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6723104455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6724372046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6723540382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6723091594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6724495313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6723534033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6724259431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6723090111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6724430187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6723874824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6722676480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6723139719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/6722635834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/6722610412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722400085?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6722361763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722434796?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6722422660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-debian-buster-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722438614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-debian-buster-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6722380409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6722401824?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6722352512?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6722389405?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6722651445?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722345657?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722345513?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-java-jars,github,{},java-jars/github.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6722360481?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6722405657?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-python-sdist,github,{},python-sdist/github.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6725038964?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6723222938?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6723222850?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6723222778?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6723222704?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722855582?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722855483?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722855417?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722855360?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722855285?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722855203?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722427439?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722427332?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722427200?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722427096?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6722420355?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-r-nightly-packages,github,{},r/github.nightly.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722365688?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6722381486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722359186?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6722353865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-ubuntu-impish-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722392722?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-ubuntu-impish-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6722369437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6722344350?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6722384591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6722402581?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6722350765?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6722416705?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6722351878?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6722432049?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722377302?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722407683?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722390632?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722393786?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722361480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722386083?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722378683?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722383989?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722413569?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722375733?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722419381?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722436152?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722397904?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6722410369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722437628?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6722347433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722400918?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6722404418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722439403?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6722421458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722408597?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722415524?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722355878?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5273c90e77cc202b0df7179fb78662ad42904a19
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6722411688?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-03-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5273c90e77cc202b0df7179fb78662ad42904a19
diff --git a/csv_reports/nightly-packaging-2022-06-04-0.csv b/csv_reports/nightly-packaging-2022-06-04-0.csv
deleted file mode 100644
index 193478a26fd..00000000000
--- a/csv_reports/nightly-packaging-2022-06-04-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6736973108?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6736988997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6736969672?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-centos-7-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6736981326?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6736978684?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6736984576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6736994123?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6737001996?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6736993104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6737494180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6737466050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6737161571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6737567680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6737161432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6737355669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6737462948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6737499066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6737259778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6737265268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6737146492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6737118232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6737331935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6737534113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6737451549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6737140851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6737520707'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6737366508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6737249664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6737669569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6737321618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6737662244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6737358406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6737760626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6737624506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6737325178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6737250536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6737059401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/6737229966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/6737083315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6736975440?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6736975586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6736979224?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6736987819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-buster-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6737000286?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-buster-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6736988393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6736987581?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6736989531?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6736981629?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6737145825?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6736980573?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6736980532?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-java-jars,github,{},java-jars/github.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6736995923?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6736977777?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-python-sdist,github,{},python-sdist/github.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6737781302?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6737265459?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6737265438?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6737265395?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6737265363?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6737129534?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6737129502?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6737129473?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6737129441?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6737129403?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6737129371?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6736981150?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6736981088?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6736980987?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6736980913?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6736978374?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-r-nightly-packages,github,{},r/github.nightly.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6736972492?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6736998466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6736974940?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6736971368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-impish-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6737001624?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-impish-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6736982154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6736997648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6736998846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6736996065?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6737004376?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6736992601?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6736973876?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6736984312?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6737005039?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736996561?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736986542?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736976013?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736991603?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6737002591?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-mavericks-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6737003993?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6737000584?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736999804?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736993070?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736969398?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736996857?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736986990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6736995286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736968706?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6737004770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736997278?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6736993278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736972284?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6737002180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736998300?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736990738?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6737000946?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6736985316?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-04-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
diff --git a/csv_reports/nightly-packaging-2022-06-05-0.csv b/csv_reports/nightly-packaging-2022-06-05-0.csv
deleted file mode 100644
index 1eb4ee19a86..00000000000
--- a/csv_reports/nightly-packaging-2022-06-05-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743670242?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6743664242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743661398?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-centos-7-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743682082?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743657493?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6743685630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6743662379?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6743673781?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6744006655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6744286243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6744261732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6743804183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6743851656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6743988129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6743996559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6744285668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6744091187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6743945174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6743864442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6744156511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6744177149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6743978809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6743850290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6743802906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6743818741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6744156815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6744067178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6744138874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6744301188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6744040216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6744311252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6744043458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6744369332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6744132229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6743746867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6743920898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6743763888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/6743818214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/6744071386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743674968?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6743658255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743673312?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6743684890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-buster-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743681674?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-debian-buster-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6743666136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6743675486?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6743690510?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6743685367?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6743778568?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743660349?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743660279?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-java-jars,github,{},java-jars/github.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6743663455?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6743689752?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-python-sdist,github,{},python-sdist/github.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6744469195?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743895509?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743895488?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743895468?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743895452?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743811358?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743811346?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743811331?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743811312?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743811298?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743811279?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743690932?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743690907?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743690887?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743690841?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6743688352?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-r-nightly-packages,github,{},r/github.nightly.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743668076?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6743667178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743686199?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6743663669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-impish-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743676592?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-impish-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6743665413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6743688008?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6743682803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6743679623?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6743674469?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6743671796?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6743676218?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6743683380?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743678242?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743665125?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743659082?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743655456?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743667783?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743666934?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743691542?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743688709?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743654158?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743653910?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743668928?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743680092?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743684153?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6743652228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743679129?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6743661813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743668684?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6743692004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743671486?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6743653081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743664671?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743688959?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743679294?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6743690703?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-05-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,25e0dd488ab60417f8f453f648e6ecfeb058f01e
diff --git a/csv_reports/nightly-packaging-2022-06-06-0.csv b/csv_reports/nightly-packaging-2022-06-06-0.csv
deleted file mode 100644
index 984cc104812..00000000000
--- a/csv_reports/nightly-packaging-2022-06-06-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752163192?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752101687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752098202?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752102771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752112558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752145395?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752124404?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752137939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6752132304?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6752105470?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6752833086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752609001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6753654819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6752489596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6752582359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6753278636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6752577722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6752632566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6752694901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6753247728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752806309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6753617983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6752768726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6753143700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6753143171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/6752134292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6753655967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6753704651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6753570578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6752721481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6753304073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6753471090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6753187287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6754292525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6753291078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6753655327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6752363311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6752329861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6753463874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/6753020414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/6752352095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752165182?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752154217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752120453?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752158943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752182935?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752172397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6752167029?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/6752182242?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/6752160457?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6753657927?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752153732?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752153603?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-java-jars,github,{},java-jars/github.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6752136251?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6752123166?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-python-sdist,github,{},python-sdist/github.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6754585362?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752857720?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752857610?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752857515?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752857385?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752465131?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752465072?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752465009?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752464937?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752464874?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752464794?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752120086?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752119930?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752119774?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752119583?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6752108500?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-r-nightly-packages,github,{},r/github.nightly.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752130054?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752093955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752174119?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752141078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752125170?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752132973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752131028?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752125961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752100879?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6752122254?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752158589?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752118411?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6752140472?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752143587?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752144194?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752103767?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752178901?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752091366?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752176182?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752151792?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752090481?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752142179?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752109551?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752096644?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752134499?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752147538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752114483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752089006?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752115606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752150512?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752167391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752135502?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6752099117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752152854?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752174985?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752119238?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6752087565?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-06-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b050bd0d31db6412256cec3362c0d57c9732e1f2
diff --git a/csv_reports/nightly-packaging-2022-06-07-0.csv b/csv_reports/nightly-packaging-2022-06-07-0.csv
deleted file mode 100644
index 339b8ad3d8d..00000000000
--- a/csv_reports/nightly-packaging-2022-06-07-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6769935015?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6769997008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6769976202?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6769983292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6770002315?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769943776?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6769973800?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6769980984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6769982651?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6769964848?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6769946006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6770505176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6770487425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6772296131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6771988318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6770653050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6771985618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6770663975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6770428071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6771302709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6770655739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6770475935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6771124528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6771252707'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6770668343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6770593551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6771061763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6770479547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6771674764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6771622358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6771611569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6772541209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6771795673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6772955184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6772110872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6771885926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6771383451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6771903542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6771937130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/6772017130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/6770281628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6769957625?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6769903632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6769955091?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6769918700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-debian-buster-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6769913127?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-debian-buster-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6769966911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6769927469?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6769928671?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6770006129?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6771882685?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6769986877?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6769986757?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-java-jars,github,{},java-jars/github.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6769958718?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6769947501?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-python-sdist,github,{},python-sdist/github.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6772893872?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6770914141?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6770914058?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6770913948?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6770913800?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6770372510?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6770372411?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6770372319?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6770372226?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6770372115?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6770372019?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6769952409?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6769952258?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6769952036?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6769951908?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6769942846?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-r-nightly-packages,github,{},r/github.nightly.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769963438?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6769905846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6769929483?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6769915483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-ubuntu-impish-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6770000185?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-ubuntu-impish-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6769991220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6769924410?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6769970803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6769978369?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6769975030?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6769961884?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6769900304?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6769959785?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769901458?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769979918?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6770001350?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769950345?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769941256?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769989614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769896634?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769988340?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769938564?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769946451?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769992785?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769968356?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769893386?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6769948712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769960707?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6769908903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769925744?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6770004478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769999011?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6769996244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769895515?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769985332?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769932547?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6769969441?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-07-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5a2f19846c29f5603ef2e0f5b8fce2aaa17eddf4
diff --git a/csv_reports/nightly-packaging-2022-06-08-0.csv b/csv_reports/nightly-packaging-2022-06-08-0.csv
deleted file mode 100644
index fb9b6b1f327..00000000000
--- a/csv_reports/nightly-packaging-2022-06-08-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789450824?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6789540743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789446924?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6789460190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789471469?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789511432?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789453193?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6789474266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6789466226?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6789491732?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6789514362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6791032423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6790001438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6791454653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6791585083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6790804601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6790918554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6790236207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6789929016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6790143223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6791216428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6790830321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6790062999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6789999438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6791123311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6790431206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6789951356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6791715075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6791812555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6791070712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6790549597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6792173896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6791615354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6791395095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6790555312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6791034656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6791126682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6790276071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6790208089'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/6790351150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/6789753139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789457988?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789506389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789444942?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789538234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789493136?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789479090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6789456161?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6789536097?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6789499977?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6790857447?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6789503914?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6789503735?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-java-jars,github,{},java-jars/github.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6789462004?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6789537633?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-python-sdist,github,{},python-sdist/github.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6792697487?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790277380?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790277267?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790277139?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790276998?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790089409?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790089295?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790089172?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790089085?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790088988?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790088907?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6790088798?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6789505244?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6789505133?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6789505028?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6789504836?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6789504647?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6789496419?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-r-nightly-packages,github,{},r/github.packages.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789545706?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789482646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6789534725?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6789485113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789452091?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789514650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789467671?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789498754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6789533822?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6789473621?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789487088?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6789507588?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6789449152?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789548325?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789518538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789469270?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789550699?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789526810?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789522227?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789523038?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789529111?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789465364?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789442796?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789520896?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789494419?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789531639?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789445471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789543711?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789530084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789519978?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789489744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789470599?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6789524813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789450166?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789547278?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789481863?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6789463904?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-08-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5fe3a606f16b183cf706ae8d9a4adaff593c18a1
diff --git a/csv_reports/nightly-packaging-2022-06-09-0.csv b/csv_reports/nightly-packaging-2022-06-09-0.csv
deleted file mode 100644
index 22dc8ba056c..00000000000
--- a/csv_reports/nightly-packaging-2022-06-09-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808511387?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6808415125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808470500?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6808437965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808492448?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808424170?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808467062?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6808496891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6808422297?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6808488644?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6808485835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6809539908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6810144519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6808974964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6809731109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6810169077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6809157569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6809029512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6810422131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6810011356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6809055700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6809547026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6809008708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6809808074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6809308121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6810352900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6810315601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6810800139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6809791755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6809931608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6809220585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6810881919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6810848148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6810320778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6809526623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6811043843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6809497140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/6809069404'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6810015143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/6808680583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/6808735622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808485649?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808450631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808451903?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808449657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808486265?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808474646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6808500185?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6808420223?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6808517717?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-java-jars,pending,"['https://github.com/ursacomputing/crossbow/runs/6812996870?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808513968?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808513833?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-java-jars,github,{},java-jars/github.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6808469574?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6808522434?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-python-sdist,github,{},python-sdist/github.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6813584980?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6809375765?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6809375644?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6809375524?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6809375410?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808947446?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808947331?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808947225?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808947132?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808947029?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808946922?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808946794?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808424400?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808424254?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808424180?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808424091?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808423944?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6808417007?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-r-nightly-packages,github,{},r/github.packages.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808476781?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808478851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6808504749?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6808417552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808436887?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808454463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808421390?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808464810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6808460965?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6808431220?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808414393?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6808477685?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6808434178?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808507969?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808445816?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808428992?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808474011?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808435376?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808448687?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808457759?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808442834?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808444664?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808480509?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808502149?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808525142?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808513105?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808455773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808503202?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808432696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808463672?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808472660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808425779?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6808418893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808439767?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808424886?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808515081?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6808468058?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-09-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,dc11d4394a51850e0039f9f30940a6a81d3385b7
diff --git a/csv_reports/nightly-packaging-2022-06-10-0.csv b/csv_reports/nightly-packaging-2022-06-10-0.csv
deleted file mode 100644
index 32834acc2c4..00000000000
--- a/csv_reports/nightly-packaging-2022-06-10-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827212091?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6827202336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827219500?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6827237381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827247503?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827225508?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827273413?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6827280770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6827197802?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6827261878?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6829048831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827940456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6828615559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6828478312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6828969198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6829271388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6828598468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6828379107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6827637597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6828489017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6829059850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6829185874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6829505946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6829114743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827731444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6829487640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6827756372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6829010926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6829048365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6828002217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6827938191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6829900897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6828376825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6828403105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6828149612'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6829383189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6829035392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6830165074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6828650474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6829019099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,452f11c392ffba728484fb69922096356fb56f68
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6828040147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,452f11c392ffba728484fb69922096356fb56f68
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827287659?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827252650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827190906?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827253466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827265554?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827250220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6827223984?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,452f11c392ffba728484fb69922096356fb56f68
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6827249408?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,452f11c392ffba728484fb69922096356fb56f68
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6827258006?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,452f11c392ffba728484fb69922096356fb56f68
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6828504929?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827255161?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827254996?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-java-jars,github,{},java-jars/github.yml,452f11c392ffba728484fb69922096356fb56f68
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6827277925?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,452f11c392ffba728484fb69922096356fb56f68
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6827235811?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-python-sdist,github,{},python-sdist/github.yml,452f11c392ffba728484fb69922096356fb56f68
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6829502165?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827864769?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827864659?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827864565?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827864429?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827651110?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827651042?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827650954?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827650872?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827650785?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827650697?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827650535?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827205372?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827205291?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827205204?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827205088?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827204949?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6827199033?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-r-nightly-packages,github,{},r/github.packages.yml,452f11c392ffba728484fb69922096356fb56f68
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827206259?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827256640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6827293474?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6827194265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827227141?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827233935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827207700?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827212700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827278643?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6827290862?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827229302?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827283961?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6827242935?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827222380?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827292123?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827211097?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827276667?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827269667?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827259756?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827218269?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827248113?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827195335?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827209829?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827246302?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827245106?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827216826?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827288432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827274221?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827203056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827267669?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827231351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827285328?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6827227207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827193464?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827286432?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827281752?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,452f11c392ffba728484fb69922096356fb56f68
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6827260840?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-10-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,452f11c392ffba728484fb69922096356fb56f68
diff --git a/csv_reports/nightly-packaging-2022-06-11-0.csv b/csv_reports/nightly-packaging-2022-06-11-0.csv
deleted file mode 100644
index c9b84abed0b..00000000000
--- a/csv_reports/nightly-packaging-2022-06-11-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841970751?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6841993544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6842006073?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6842003708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841991434?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841986088?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841977065?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6842002423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6841979919?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6841974900?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6841989601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6842719853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6842648121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6842558050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6842380489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6842347060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6842519903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6842418569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6842678769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6842338620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6842202926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6842155627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6842147928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6842157225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6842555354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6842167176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6842138923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6842603864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6842640502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6842187941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6842396790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6842261706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6842592554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6842309751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6842549229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6842267053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6842426912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6842657751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6842497214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6842837946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6842635286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6842007458?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6842009081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6842009850?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6841985405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841982367?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6841981714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6841974136?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6842001550?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6841996393?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-java-jars,pending,"['https://github.com/ursacomputing/crossbow/runs/6842592376?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842000691?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842000660?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-java-jars,github,{},java-jars/github.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6841999871?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6842004942?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-python-sdist,github,{},python-sdist/github.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-r-nightly-packages,pending,"['https://github.com/ursacomputing/crossbow/runs/6842303515?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842303496?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842303476?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842303458?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842206455?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842206430?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842206408?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842206382?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842206348?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842206325?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842206308?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842013960?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842013873?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842013825?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842013779?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842013746?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6842010220?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-r-nightly-packages,github,{},r/github.packages.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841981134?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6842000947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6841990773?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6841987879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841971144?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6841996832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841997905?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6841989583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6842008195?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6841986450?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6841988621?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6841988247?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6841970188?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841998789?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841991141?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841987618?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6842002197?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841982910?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841976013?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841980552?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841971884?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6842004197?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6842004558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841995807?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841985120?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841986897?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6842002728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841975339?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6842005554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841998222?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6841974415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841984778?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6841977551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841996575?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841983487?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841973523?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6841972386?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-11-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,44eb26072be7864a0c5673afaa1ea71e360a9f06
diff --git a/csv_reports/nightly-packaging-2022-06-12-0.csv b/csv_reports/nightly-packaging-2022-06-12-0.csv
deleted file mode 100644
index 952d2b3afef..00000000000
--- a/csv_reports/nightly-packaging-2022-06-12-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848626294?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6848617111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848627075?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6848622101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848625273?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848616522?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848612646?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6848597423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6848604894?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6848626542?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6848616804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6849144904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6849330774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6849107705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6848962641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848799411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6848972782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6848792880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6848801813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6849289910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848794314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6849162333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6849008904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6848847501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6849173611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6848752888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6849339126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6849016809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6849219476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6849364503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6849351132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6849226843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6848942819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6849470528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6848950409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6849106821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6849374865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6849178317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6849293247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6848932499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6848890053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848605496?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848627215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848593308?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848606967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848630059?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848603447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6848621293?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6848620829?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/6848617987?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6849160598?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848618930?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848618891?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-java-jars,github,{},java-jars/github.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6848602269?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6848621534?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-python-sdist,github,{},python-sdist/github.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6849613202?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848930728?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848930711?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848930691?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848930670?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848818661?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848818627?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848818602?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848818586?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848818563?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848818548?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848818534?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848592565?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848592484?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848592416?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848592319?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848592233?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6848589246?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-r-nightly-packages,github,{},r/github.packages.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848598597?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848608109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848598353?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848591293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848628943?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848590686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848602856?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848594960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848592409?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6848615760?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848605242?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848601839?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6848623858?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848609763?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848617614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848608673?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848629453?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON'}",python-wheels/github.osx.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848603929?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848594075?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848624425?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848619185?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF'}",python-wheels/github.osx.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848610324?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848620427?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848607570?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848606245?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848618684?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848598045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848615237?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848622875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848594805?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848625529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848599269?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6848611314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848601627?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848622003?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848596850?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6848619525?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-12-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,f6c2751d3d558af53d6c68bd2e3cf70fbb9bd29f
diff --git a/csv_reports/nightly-packaging-2022-06-13-0.csv b/csv_reports/nightly-packaging-2022-06-13-0.csv
deleted file mode 100644
index c47c7fe0a6c..00000000000
--- a/csv_reports/nightly-packaging-2022-06-13-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857338911?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6857355942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857358755?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6857332659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857410713?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857402072?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857399141?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6857338194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6857435703?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6857416426?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6857384973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857896708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6857913714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6857887498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6859313389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6858724642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6859292870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6857911807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6859305597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6858469469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6858805521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6858398142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6859076993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6859819424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6859150740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6857818076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6857912188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6858102756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6859802164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6858797915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6859896272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6858953121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6858633342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6859316780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6859435596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6859994850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/6859176234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6859265078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6860748715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6858226666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6858403900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857334669?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857333777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857412953?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857440930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857426347?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857339630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6857407472?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6857336285?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/6857418682?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6859101175?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857428610?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857428467?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-java-jars,github,{},java-jars/github.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6857372674?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6857419730?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-python-sdist,github,{},python-sdist/github.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/6859368031?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6858309752?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6858309626?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6858309507?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6858309398?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857871973?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857871903?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857871825?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857871755?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857871675?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857871575?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857871440?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857391404?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857391245?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857391078?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857390879?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857390606?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6857381882?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-r-nightly-packages,github,{},r/github.packages.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857380867?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857343554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857403898?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857413502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857400471?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857414777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857361223?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857382861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857375091?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6857384538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6857388934?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857373748?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6857431996?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857421722?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6857362652?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6857391072?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6857342461?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857379872?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6857395916?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857436792?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857392112?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857410114?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6857405989?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857437988?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2010-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6857389912?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857386290?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857365205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6857408204?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857397748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857425159?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857357055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857372092?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6857388084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857420602?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857350920?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857376613?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6857405328?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-13-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d449d1576c82502bb0c52e97e41b12ccf7fb1d76
diff --git a/csv_reports/nightly-packaging-2022-06-14-0.csv b/csv_reports/nightly-packaging-2022-06-14-0.csv
deleted file mode 100644
index 3420bac2682..00000000000
--- a/csv_reports/nightly-packaging-2022-06-14-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876213589?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876212043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876255798?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876235018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876244760?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876258930?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876242830?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876197301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6876249401?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6876275409?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6876263676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6878047275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6878512489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6878009502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6878979296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876969801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6876847763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6877603276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6876851885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6876943297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876837180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6877349837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6878528685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6877435831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6878271337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6877440078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6876793869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6877577870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6878513009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6878506317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6878684602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6878404225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6878830019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6877557411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6878015268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6880059979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6877176422'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6877643506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6878713398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6879217677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,2885307762792deca6fa8e34976708f8855805fc
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6879777813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,2885307762792deca6fa8e34976708f8855805fc
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876276894?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876204794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876262393?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876195137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876193482?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876271290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6876191087?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,2885307762792deca6fa8e34976708f8855805fc
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6876263317?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,2885307762792deca6fa8e34976708f8855805fc
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/6876254584?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,2885307762792deca6fa8e34976708f8855805fc
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6878685539?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876302110?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876301972?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-java-jars,github,{},java-jars/github.yml,2885307762792deca6fa8e34976708f8855805fc
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6876285529?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,2885307762792deca6fa8e34976708f8855805fc
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6876237794?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-python-sdist,github,{},python-sdist/github.yml,2885307762792deca6fa8e34976708f8855805fc
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/6879171650?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6877055894?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6877055805?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6877055704?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6877055597?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876865439?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876865350?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876865248?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876865159?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876865039?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876864955?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876864863?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876306970?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876306754?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876306618?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876306386?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876306211?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6876298375?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-r-nightly-packages,github,{},r/github.packages.yml,2885307762792deca6fa8e34976708f8855805fc
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876219484?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876277508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876282676?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876216340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876201480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876241529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876287376?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876240257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6876231180?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6876206787?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6876292362?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876279950?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6876266089?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876257147?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6876290027?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876304589?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876210149?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876288536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6876208912?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876284230?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876229678?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876294676?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6876215420?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876279152?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876274336?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876248138?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876296371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6876203764?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876226748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876299746?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876246253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876261485?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6876285808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876252537?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876202658?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876281777?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,2885307762792deca6fa8e34976708f8855805fc
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6876220631?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,2885307762792deca6fa8e34976708f8855805fc
diff --git a/csv_reports/nightly-packaging-2022-06-15-0.csv b/csv_reports/nightly-packaging-2022-06-15-0.csv
deleted file mode 100644
index d1daaf0a97f..00000000000
--- a/csv_reports/nightly-packaging-2022-06-15-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895543545?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895544310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895555091?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895548466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895634314?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895656296?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895587257?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895653966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6895616319?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6895613998?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6896904762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6896179520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6897834058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6896073169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6897176770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6897285445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6898109619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6896855714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6896062266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6897965560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6896722250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6896172569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6896138261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6896327084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6896872627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6896058575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6896782144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6896183813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6897127390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6897909102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6897654606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6897803711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6896672642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6898572575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6897351569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6896591655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6897875816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6898320288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6897548907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6897397584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6897841344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895580377?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895557454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895642906?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895617112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895650811?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895545576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6895593039?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6895603637?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/6895596671?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6898633353?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6895645551?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6895645279?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-java-jars,github,{},java-jars/github.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6895632200?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6895653070?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-python-sdist,github,{},python-sdist/github.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/6898611049?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896604710?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896604617?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896604442?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896604287?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896270745?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896270596?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896270474?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896270324?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896270233?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896270149?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6896270038?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6895636122?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6895636014?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6895635900?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6895635643?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6895635486?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6895628409?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-r-nightly-packages,github,{},r/github.packages.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895636648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895606130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895567637?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895559818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895647794?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895641245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895615060?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895570952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895646512?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6895611269?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6895655329?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895627107?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6895630793?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895594240?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6895590403?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895635637?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895612568?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895620034?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6895585722?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895579145?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895565958?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895572538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6895629444?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895581592?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895552587?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895604925?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895602120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6895563811?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895600654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895573670?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895608514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895588391?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6895638617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895584529?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895640371?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895562692?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6895576593?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-15-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d63c16b741bcc71648c4f49d05b8abed79bc4007
diff --git a/csv_reports/nightly-packaging-2022-06-16-0.csv b/csv_reports/nightly-packaging-2022-06-16-0.csv
deleted file mode 100644
index ca8ae82ea8f..00000000000
--- a/csv_reports/nightly-packaging-2022-06-16-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914551156?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914547789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914606190?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914587602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914579380?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914611110?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914553602?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914588272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6914567417?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True', 'image': 'conan'}",docker-tests/github.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6914582465?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6914554280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6916343575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6916618381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6914976464'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6916277199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6916414452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6915789900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6916726097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6915137568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6915191681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6915740449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6914989544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6915154526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6915720386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6915657705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6916328067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6915133968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6916176483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6915164759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6915329123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6916505262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6917148996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6916597666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6916478382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6915549628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6915641114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6916084117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6917225555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6917320794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6916070575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6917112373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914610075?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914596832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914528441?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914537819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914564650?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914543044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6914540558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6914604470?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/6914620342?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6915755893?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6914573677?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6914573536?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-java-jars,github,{},java-jars/github.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6914600662?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6914557445?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-python-sdist,github,{},python-sdist/github.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/6917294029?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915701751?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915701636?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915701512?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915701389?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915077561?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915077398?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915077266?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915077121?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915077013?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915076909?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6915076781?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6914581059?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6914580944?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6914580803?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6914580679?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6914580540?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6914574475?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-r-nightly-packages,github,{},r/github.packages.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914621316?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914590461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914583653?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914541560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914607648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914539090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914576390?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914613860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914626012?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/6914559179?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914591990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6914595374?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6914545447?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914613301?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6914527445?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914578576?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914571406?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914589604?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6914565887?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914552213?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914623404?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914605363?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6914577319?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914562243?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914616614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914554576?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914559968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6914584583?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914599312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914570312?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914585389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914598542?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6914563121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914622330?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914535985?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914555646?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6914536846?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5792f57ba025b44c6e3da539d1a6e47ea0d15fad
diff --git a/csv_reports/nightly-packaging-2022-06-17-0.csv b/csv_reports/nightly-packaging-2022-06-17-0.csv
deleted file mode 100644
index 126510e0687..00000000000
--- a/csv_reports/nightly-packaging-2022-06-17-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932497332?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932584081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932554546?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932560745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932548480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932587690?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932509245?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932561849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6932553587?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6932527963?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6933657148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6933579616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6934788656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6932951881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6934052844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6933129576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6933588573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/6933774607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6933432328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6934129846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6933077574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6932980384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6933824714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6933120308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6933627107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6933570583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6933004234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6934667361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6934405455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6934337077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6934522911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6934475212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6934521289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6933651356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6933387621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6934485907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6934914758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6933637400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6934849801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6933590965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6934507819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932593748?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932575572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932524826?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932539164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932545908?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932540348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6932519132?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/6932533677?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/6932580864?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6933240539?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932536920?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932536819?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-java-jars,github,{},java-jars/github.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6932538401?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6932579156?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-python-sdist,github,{},python-sdist/github.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/6934725313?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6933132754?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6933132690?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6933132616?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6933132498?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932935737?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932935596?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932935462?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932935311?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932935202?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932935052?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932934928?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932521135?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932520887?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932520800?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932520725?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932520581?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6932513282?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-r-nightly-packages,github,{},r/github.packages.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932504473?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932517885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932543981?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932571830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932537559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932559586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932512293?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932579567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932589775?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6932520150?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6932592921?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932571143?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6932522265?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932563934?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6932563113?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932547092?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932535740?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932521338?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6932591899?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932582155?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932516618?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932552775?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6932564928?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932502320?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932585565?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932532464?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932590431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6932501392?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932510345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932555407?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932542665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932508362?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6932574203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932576134?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932544948?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932525878?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6932496283?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-17-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,8737123019ecb49e1670ea7b94b02404dc3709b5
diff --git a/csv_reports/nightly-packaging-2022-06-18-0.csv b/csv_reports/nightly-packaging-2022-06-18-0.csv
deleted file mode 100644
index c026b2d2518..00000000000
--- a/csv_reports/nightly-packaging-2022-06-18-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946850247?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946830706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946829990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946858171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946861637?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946863802?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946826697?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946841864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6946856394?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6946861905?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6946853861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6947253011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6947391576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6947222205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6947008062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6947584053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6947033067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6947441338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6947470458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6947059568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6947068867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6947259846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6947503062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6947281588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6947030112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6947000606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6947220908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6947594611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6947060972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6947415733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6947038244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6947091503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6947610853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6947391744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6947497675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6947663268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6947339462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6947193432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6947360277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6947670405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6947341411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946829374?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946836745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946828728?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946858579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946839933?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946842775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6946864086?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6946855133?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/6946852127?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6946945035?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6946825942?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6946825912?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-java-jars,github,{},java-jars/github.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6946859320?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6946855573?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-python-sdist,github,{},python-sdist/github.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/6947710981?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947154246?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947154185?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947154152?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947154115?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947040695?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947040668?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947040646?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947040616?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947040581?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947040551?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6947040513?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6946855482?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6946855438?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6946855402?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6946855374?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6946855293?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6946852658?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-r-nightly-packages,github,{},r/github.packages.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946832277?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946845923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946834294?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946826369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946835677?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946848210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946843105?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946862986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6946848615?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6946826186?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946839195?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946841470?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6946847707?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946843511?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6946835079?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946857380?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946859120?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946851489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6946847298?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946854071?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946829581?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946836102?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6946846340?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946864886?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946833125?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946864316?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946837230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6946832822?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946859619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946833714?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946827235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946860891?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6946840684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946857093?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946855953?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946849320?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6946839611?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-18-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
diff --git a/csv_reports/nightly-packaging-2022-06-19-0.csv b/csv_reports/nightly-packaging-2022-06-19-0.csv
deleted file mode 100644
index fb33fcdd2ec..00000000000
--- a/csv_reports/nightly-packaging-2022-06-19-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953735066?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953731727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953739288?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953747103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953761229?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953743329?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953737005?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953741248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6953758124?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6953750231?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6953740959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6954353433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6954123039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6954140732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6953957848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953974358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6954319820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6954263014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6954454916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6953911202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6954106453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6954418179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6954539445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6954186149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6954401545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6954247149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6953931823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6953959050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6954520239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6954241061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6954510860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6954599641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6954123676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6954557784'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6954066547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6954079984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6954037145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6954496853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6954175883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6954423966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6954306074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953758791?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953760763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953723367?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953753430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953738831?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953744921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6953753207?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6953728229?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/6953742239?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6953987826?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953741923?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953741856?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-java-jars,github,{},java-jars/github.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6953758559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6953750972?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-python-sdist,github,{},python-sdist/github.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/6954635567?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953978272?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953978243?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953978209?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953978174?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953897075?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953897038?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953897002?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953896973?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953896940?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953896902?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953896843?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953729753?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953729715?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953729692?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953729669?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953729619?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6953725202?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-r-nightly-packages,github,{},r/github.packages.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953755147?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953737774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953759614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953747963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953746465?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953756874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953761476?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953726613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953723845?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6953722747?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/6953762739?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953730213?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6953729443?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953747630?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6953745535?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953736739?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953736130?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953752415?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6953761786?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953742712?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953735601?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953740813?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6953756413?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953744075?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953730575?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953724618?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953748383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6953759169?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953743603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953733903?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953722962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953750589?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6953756129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953733073?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953728883?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953738629?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6953740367?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4ade394a7a0fa22ecb8ef2e3b4dc8bb42e599274
diff --git a/csv_reports/nightly-packaging-2022-06-20-0.csv b/csv_reports/nightly-packaging-2022-06-20-0.csv
deleted file mode 100644
index 9e78bd98d6a..00000000000
--- a/csv_reports/nightly-packaging-2022-06-20-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962843376?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962870623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962864287?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962901937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962816854?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962896876?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962814627?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962856358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/6962888487?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/6962904960?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/6962849026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6963587386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6964031896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6964989456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6964833742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6964251203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/6963530430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/6964848175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6963362107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6965167528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6963579494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6964060518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6963323336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6965416848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6964892252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/6963397852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/6964116050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/6964600128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6964841498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6965387114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6964394641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/6964413771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6965122567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6964161156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/6965851520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/6965036742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/6965788927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/6965312220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/6964051429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/6963874968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/6963997591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962835656?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962900195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962915004?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962880627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962865528?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962840814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/6962884971?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/6962918157?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/6962889684?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/6963390010?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6962821988?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6962821860?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-java-jars,github,{},java-jars/github.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/6962837054?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/6962868934?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-python-sdist,github,{},python-sdist/github.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/6965573121?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963855324?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963855172?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963855042?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963854927?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963372802?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963372699?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963372599?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963372468?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963372329?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963372177?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6963372028?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6962880263?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6962880086?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6962879770?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6962879630?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6962879508?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/6962869825?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-r-nightly-packages,github,{},r/github.packages.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962812470?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962910643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962851469?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962897888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962892079?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962827325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962823938?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962834428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962893424?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6962867138?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962847069?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962815609?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/6962913799?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962832280?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6962825234?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962891016?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962811222?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962911585?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6962853855?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962838444?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962916041?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962844484?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6962917110?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962909248?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962845301?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962879911?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962861043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/6962901216?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962852596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962872969?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962862174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962903611?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/6962818910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962813538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962863405?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962839876?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/6962858994?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,207d328565b65b2c916ec17bc57f29b0c6fc8e8f
diff --git a/csv_reports/nightly-packaging-2022-06-23-0.csv b/csv_reports/nightly-packaging-2022-06-23-0.csv
deleted file mode 100644
index 99113995fff..00000000000
--- a/csv_reports/nightly-packaging-2022-06-23-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019920613?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019873929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019925008?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019925796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019939632?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019891733?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019900682?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019928519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7019877869?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7019914438?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7021395903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7022563316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7021841721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7020398831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7021973160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7022122554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7021500215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7020665320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7021964686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7021636969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7020595764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7022279937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7021357925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7021749741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7021003652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7022303741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7020509741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7021159164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7021622138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7021519896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7020775660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7022091274'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7021181486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7022358126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7022494478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7021009887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7020837360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7022194046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7021217519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7022588101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7020852772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019921598?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019977958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019892933?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019975631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019889959?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019937280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7019913445?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7019972401?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7019944803?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/runs/7020124618?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7019895956?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7019895804?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-java-jars,github,{},java-jars/github.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7019953076?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7019903210?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-python-sdist,github,{},python-sdist/github.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7021997313?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020777509?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020777409?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020777254?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020777068?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020614951?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020614845?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020614716?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020614610?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020614497?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020614401?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7020614254?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7019966875?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7019966777?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7019966693?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7019966533?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7019966363?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7019958456?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-r-nightly-packages,github,{},r/github.packages.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019923671?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019879994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019952161?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019965881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019904507?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019956308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019884168?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019886544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019932522?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7019876506?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019955478?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019911974?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7019974794?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019930053?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7019899589?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019873085?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019883050?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019871547?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7019938658?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019911101?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019869108?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019898935?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7019961574?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019927442?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019970854?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019870267?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019963369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7019977134?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019960305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019917163?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019890406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019907126?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7019953910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019908405?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019894767?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019941064?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7019902092?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-23-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,6fd4d3423e3f0d597fac547ee74f4ccba2812c8a
diff --git a/csv_reports/nightly-packaging-2022-06-24-0.csv b/csv_reports/nightly-packaging-2022-06-24-0.csv
deleted file mode 100644
index 80fa08f7e66..00000000000
--- a/csv_reports/nightly-packaging-2022-06-24-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038500972?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038456758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038498962?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038462769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038492942?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038479625?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038486779?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038519532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7038432686?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7038456268?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7039900598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7039398040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7038896053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7039496038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7038943516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7040464934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7039071565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7039694069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7039971398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7039890409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7040423196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7039776028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7038879078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7039480537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7040012393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7038880806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7038902478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7039998967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7040782940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7039231851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7039532671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7040705366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7039723873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7040948654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7039859196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7040555610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7040691673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7039377809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7040677246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7039874484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7040232247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038502300?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038430005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038448560?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038520024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038446074?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038466338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7038435461?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7038425533?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7038484924?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7038687923?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038451309?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038451107?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-java-jars,github,{},java-jars/github.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7038509931?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7038447516?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-python-sdist,github,{},python-sdist/github.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7040288927?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7039113664?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7039113555?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7039113408?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7039113297?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038932052?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038931871?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038931739?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038931630?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038931443?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038931321?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038931171?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038464289?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038464149?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038464044?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038463935?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038463685?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7038457742?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-r-nightly-packages,github,{},r/github.packages.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038464489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038491763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038472609?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038516068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038507824?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038505405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038428543?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038450057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038453207?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7038444832?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7038437347?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038455393?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7038497780?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038506971?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7038485790?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038491008?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038488218?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038493916?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7038478889?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038504908?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038482233?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038511206?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7038514536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038496851?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038461058?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038508869?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038461779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7038480502?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038453848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038426575?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038436187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038489145?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7038451666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038465393?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038469807?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038482814?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7038499958?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,86915807af6fe10f44bc881e57b2f425f97c56c7
diff --git a/csv_reports/nightly-packaging-2022-06-25-0.csv b/csv_reports/nightly-packaging-2022-06-25-0.csv
deleted file mode 100644
index 1f568f9e988..00000000000
--- a/csv_reports/nightly-packaging-2022-06-25-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052754723?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052771385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052758558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052755466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052784027?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052770792?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052782919?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052781856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7052784755?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7052760467?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7053316776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7053341613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7053093101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7052930146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7052954001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7053381330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7053338187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7053300685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7053475337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7053562469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7053110628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7053117488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7052936506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7053140985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7053305331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7053354606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7052934976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7052944461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7052976405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7053307675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7053423676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7053117396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7053095994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7053181783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7053174452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7053338514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7053215650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7053616018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7053208723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7053418168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7053604392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052754148?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052756148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052752421?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052779124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052763564?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052759462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7052765791?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,65a6929c184e9e613982d5f18125deb68b311258
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7052782616?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,65a6929c184e9e613982d5f18125deb68b311258
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7052773211?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,65a6929c184e9e613982d5f18125deb68b311258
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7052837778?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052757237?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052757185?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-java-jars,github,{},java-jars/github.yml,65a6929c184e9e613982d5f18125deb68b311258
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7052769723?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7052758304?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-python-sdist,github,{},python-sdist/github.yml,65a6929c184e9e613982d5f18125deb68b311258
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7053417738?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7053070465?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7053070438?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7053070397?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7053070364?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052958869?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052958838?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052958812?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052958769?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052958728?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052958690?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052958668?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052771714?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052771684?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052771650?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052771606?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052771571?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7052768896?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-r-nightly-packages,github,{},r/github.packages.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052752072?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052780393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052766148?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052767544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052784447?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052771920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052768230?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052772489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7052780106?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7052761465?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7052782182?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052773682?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7052760737?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052783675?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7052761126?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052775779?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052760070?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052764245?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7052783239?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052762527?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052781223?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052769295?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7052755107?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052777873?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052756745?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052770502?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052772761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7052753121?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052767745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052763859?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052757901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052765394?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7052754493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052774902?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052774048?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052778229?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7052762852?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,65a6929c184e9e613982d5f18125deb68b311258
diff --git a/csv_reports/nightly-packaging-2022-06-26-0.csv b/csv_reports/nightly-packaging-2022-06-26-0.csv
deleted file mode 100644
index dbe7833bfa6..00000000000
--- a/csv_reports/nightly-packaging-2022-06-26-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059569497?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059593933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059566431?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059580820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059594614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059563432?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059591657?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059561457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7059580243?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7059575039?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7059829117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059820655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7059733489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7060021470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7060088458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7060009996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7060311414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7060258853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7060245895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7059755594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059956255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7059740372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7059791401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7059813691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059791571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7059730659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7060324237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7059849031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7060330960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7060127688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7060034375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7060124443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7060092153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7060394365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7060056649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7060000315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7060256754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7060484714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7060430342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7059861502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,65a6929c184e9e613982d5f18125deb68b311258
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7060408563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059584908?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059580512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059559527?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059573479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059560714?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-debian-buster-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059583271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7059564227?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,65a6929c184e9e613982d5f18125deb68b311258
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7059572186?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,65a6929c184e9e613982d5f18125deb68b311258
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7059593706?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,65a6929c184e9e613982d5f18125deb68b311258
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7059655232?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059578097?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059577954?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-java-jars,github,{},java-jars/github.yml,65a6929c184e9e613982d5f18125deb68b311258
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7059577120?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,65a6929c184e9e613982d5f18125deb68b311258
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7059589745?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-python-sdist,github,{},python-sdist/github.yml,65a6929c184e9e613982d5f18125deb68b311258
-r-nightly-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7060277807?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059896439?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059896417?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059896368?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059896328?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059745750?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059745709?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059745674?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059745631?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059745589?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059745550?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059745516?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059578162?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059578058?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059578026?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059577982?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059577879?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7059574591?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-r-nightly-packages,github,{},r/github.packages.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059571387?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059569764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059592022?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059571831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059592925?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-impish-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059590015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059570856?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059570218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7059575873?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/7059581994?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7059557542?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059588649?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7059584473?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059577559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7059586500?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059563821?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059587005?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059557804?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7059582785?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059582492?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059576598?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059585712?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7059586081?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059558260?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059590407?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059561179?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059592457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7059583114?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059581188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059567215?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059559162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059573175?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7059578468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059584076?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059576225?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059565644?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,65a6929c184e9e613982d5f18125deb68b311258
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7059567682?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-26-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,65a6929c184e9e613982d5f18125deb68b311258
diff --git a/csv_reports/nightly-packaging-2022-06-27-0.csv b/csv_reports/nightly-packaging-2022-06-27-0.csv
deleted file mode 100644
index b238301ca85..00000000000
--- a/csv_reports/nightly-packaging-2022-06-27-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069089743?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-almalinux-8-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7069155109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069168018?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7069104270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7069098861?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069171471?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069101010?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-centos-8-stream-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7069153352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7069151482?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7069101941?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7069112303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7070334020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7070796611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7070481159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7071176326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7071622424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7071382825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7071749975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7069685212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7070770055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7069970536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7070361433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7070982986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7071075020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7070640244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7071598872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7071583857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7069874408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7069879005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7070077634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7069974303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7072184064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7071740701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7070418167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7071632626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7071266431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7070318749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7071663739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7071142778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7070403505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,49f26962456e11902621e41574bc5890205eac7a
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7070167978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,49f26962456e11902621e41574bc5890205eac7a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069082658?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-debian-bookworm-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7069090519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069129752?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-debian-bullseye-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7069122551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069133262?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-debian-buster-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7069076314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7069080076?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,49f26962456e11902621e41574bc5890205eac7a
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7069109573?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,49f26962456e11902621e41574bc5890205eac7a
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7069135764?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,49f26962456e11902621e41574bc5890205eac7a
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7069299786?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7069075721?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7069075466?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-java-jars,github,{},java-jars/github.yml,49f26962456e11902621e41574bc5890205eac7a
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7069113326?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,49f26962456e11902621e41574bc5890205eac7a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7069084970?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-python-sdist,github,{},python-sdist/github.yml,49f26962456e11902621e41574bc5890205eac7a
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7071665598?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7070308914?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7070308805?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7070308711?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7070308589?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7069960430?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7069164189?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7069163986?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7069163856?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7069163746?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7069163597?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7069156266?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-r-nightly-packages,github,{},r/github.packages.yml,49f26962456e11902621e41574bc5890205eac7a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069143152?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-ubuntu-bionic-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7069160830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069095533?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7069093004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069099892?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-ubuntu-impish-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7069166711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069183711?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-ubuntu-jammy-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7069152167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7069119475?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7069134579?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7069128345?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7069157277?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7069177386?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069112015?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7069116842?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069172702?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069094459?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069120391?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7069148116?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069162326?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069114812?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069141986?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7069106128?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069115791?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069078898?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069126122?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7069074012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7069092045?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2014-cp37-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7069145111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069169363?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2014-cp38-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7069139009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069108497?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7069117539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069144890?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069103675?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069146698?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,49f26962456e11902621e41574bc5890205eac7a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7069110808?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-27-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,49f26962456e11902621e41574bc5890205eac7a
diff --git a/csv_reports/nightly-packaging-2022-06-28-0.csv b/csv_reports/nightly-packaging-2022-06-28-0.csv
deleted file mode 100644
index 0fb0036ae5b..00000000000
--- a/csv_reports/nightly-packaging-2022-06-28-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088940817?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-almalinux-8-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7088927330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088885710?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-almalinux-9-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7088952025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7088912232?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088966800?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088883180?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-centos-8-stream-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7088960987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7088924219?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7088941894?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7088918454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7090237239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py310-cpu,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7091215378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7090600464'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7089573770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7090506303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7089667526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7090964980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7089521611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7090164924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7090137460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7090719053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7091428380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7090904150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7089434144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7089386806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7091053784'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7089792667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7090358332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7091236569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7090379242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7090347623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7090236618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7091100857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7090011681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7090545208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7091422163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7091702402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7091558409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7091260058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088904361?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-debian-bookworm-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7088939703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088899827?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7088894176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088923827?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-debian-buster-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7088966867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7088886768?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7088909859?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7088956625?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7089178784?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7088956103?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7088955931?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-java-jars,github,{},java-jars/github.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7088876332?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7088890215?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-python-sdist,github,{},python-sdist/github.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7091119162?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7090086432?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7090086299?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7090086198?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7090086062?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7089567242?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7088905795?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7088905652?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7088905551?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7088905435?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7088905110?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7088895790?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-r-nightly-packages,github,{},r/github.packages.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088906428?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-ubuntu-bionic-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7088905563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088873250?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-ubuntu-focal-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7088962139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088933826?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-ubuntu-impish-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7088880342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088902107?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-ubuntu-jammy-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7088937422'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7088866796?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7088897033?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7088931139?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7088871011?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7088874217?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088892043?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7088943052?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088878108?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088968796?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088915132?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7088965673?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088914632?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088951858?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088960235?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7088917408?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088887999?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088933075?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088916587?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7088898653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7088963491?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7088890621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088907777?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2014-cp38-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7088924885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088913632?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7088910464'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088897879?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088921176?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088958648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7088964489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-28-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,a376968089d7310f4a88d054822fa1eaf96c46f5
diff --git a/csv_reports/nightly-packaging-2022-06-29-0.csv b/csv_reports/nightly-packaging-2022-06-29-0.csv
deleted file mode 100644
index 9e66976b26d..00000000000
--- a/csv_reports/nightly-packaging-2022-06-29-0.csv
+++ /dev/null
@@ -1,92 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108386408?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7108389227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108373363?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-almalinux-9-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7108415710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7108351754?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108417348?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108335613?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-centos-8-stream-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7108344009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7108366632?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7108395404?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7110140481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7110710038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7109644777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7109483180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7110108484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7110857984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7110649779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7110097769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7110249150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7109719492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7110391745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7108939342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7108978906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7109228023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7109122050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7108960642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7110836231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7110109949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7111100337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7110545379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7109145407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7109436031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7110314921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7109656177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7110789224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7109506736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7110428975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7110377376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7109467669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7109781231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7111139804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108421358?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-debian-bookworm-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7108333195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108378302?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7108355469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-debian-buster-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108394399?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-debian-buster-amd64,github,"{'target': 'debian-buster', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-debian-buster-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7108393244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-debian-buster-arm64,travis,"{'target': 'debian-buster-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7108334393?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7108429046?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7108431300?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7108623802?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7108391508?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7108391337?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-java-jars,github,{},java-jars/github.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7108330184?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7108407052?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-python-sdist,github,{},python-sdist/github.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-r-nightly-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7113461005?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7109899157?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7109899046?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7109898947?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7109898796?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7109175996?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7108415043?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7108414877?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7108414738?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7108414628?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7108414410?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7108406083?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-r-nightly-packages,github,{},r/github.packages.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108340782?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7108391479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108346638?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7108374665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-ubuntu-impish-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108359681?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-ubuntu-impish-amd64,github,"{'target': 'ubuntu-impish', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-ubuntu-impish-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7108341872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-ubuntu-impish-arm64,travis,"{'target': 'ubuntu-impish-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108328235?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-ubuntu-jammy-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7108427016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7108340222?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7108367509?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7108345523?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7108371876?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7108352687?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108354093?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7108420526?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108376588?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108380589?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108370636?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7108357791?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108362889?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108361580?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108364927?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2010-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7108425349?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108422377?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108410903?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108336433?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7108331734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7108429693?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2014-cp37-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7108350426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108376026?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2014-cp38-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7108423484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108382982?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-manylinux2014-cp39-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7108409933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108418332?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108360504?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108384037?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7108424508?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-29-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b34f9dfb40d9b6282fc207cd9983da0cd1abb2d4
diff --git a/csv_reports/nightly-packaging-2022-06-30-0.csv b/csv_reports/nightly-packaging-2022-06-30-0.csv
deleted file mode 100644
index d8061388ece..00000000000
--- a/csv_reports/nightly-packaging-2022-06-30-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127801971?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127764074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127801395?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127749690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127795084?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127812261?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127758773?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127813426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7127815238?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7127797804?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7128976136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7128425954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7128955974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7130020246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7128527481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7129224392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7129527228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7128368365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7129996146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7128380964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7128549975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7130280308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7129542859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7130206856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7129790530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7130376885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7129025484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7129906673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7129488171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7129846596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7128607765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7129913567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7129127531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7130316861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7128892835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7130241822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7129013557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7130008620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7131304013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7128948256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7129356032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127743714?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127827008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127817616?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127774086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7127814115?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7127835567?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7127789522?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7128064807?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7127793016?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7127792872?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-java-jars,github,{},java-jars/github.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7127825501?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7127747073?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-python-sdist,github,{},python-sdist/github.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7130323921?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128931719?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128931616?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128931534?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128931383?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128458395?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128458271?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128458095?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128457975?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128457815?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128457727?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7128457584?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7127791397?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7127791199?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7127791013?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7127790865?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7127790384?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7127781011?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-r-binary-packages,github,{},r/github.packages.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127744980?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127822286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127755492?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127753156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127754612?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127829335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7127832490?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7127833875?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7127778177?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127748449?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7127811102?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127765105?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127799342?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127787700?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127770823?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127769794?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127808653?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127793947?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127784951?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127785626?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127830724?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127781982?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127820709?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127788738?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127756549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127816465?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127742676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127766544?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127795343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127768432?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7127752307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127776134?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127757479?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127821600?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7127804498?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-06-30-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,841be69dc715ecfd99d0f9123c1961b09fb78c84
diff --git a/csv_reports/nightly-packaging-2022-07-01-0.csv b/csv_reports/nightly-packaging-2022-07-01-0.csv
deleted file mode 100644
index 5629e882cec..00000000000
--- a/csv_reports/nightly-packaging-2022-07-01-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146662029?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146629065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146707780?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146667868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146702381?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146650049?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146684051?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146663217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146686954?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146636032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7146666237?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7146687816?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7146666016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7149139014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7147110221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7147581723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7148443449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7149046956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7148679991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7147768793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7147187359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7148176316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7148364671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7147107663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7147222680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7148730008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7147344570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7148821889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7147801419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7147310394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7148397062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7148479498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7148086192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7148202297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7148507306'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7148785423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7147521934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7147673878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7147755602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7149232648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7148807248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7149202404'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,38918ef0d59387895759223bee2d704c293bcfb9
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7147526576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,38918ef0d59387895759223bee2d704c293bcfb9
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146677407?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146624611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146709814?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146632623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7146667175?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,38918ef0d59387895759223bee2d704c293bcfb9
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7146665546?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,38918ef0d59387895759223bee2d704c293bcfb9
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7146640376?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,38918ef0d59387895759223bee2d704c293bcfb9
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7147191853?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7146641846?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7146641640?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-java-jars,github,{},java-jars/github.yml,38918ef0d59387895759223bee2d704c293bcfb9
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7146628337?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,38918ef0d59387895759223bee2d704c293bcfb9
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7146703127?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-python-sdist,github,{},python-sdist/github.yml,38918ef0d59387895759223bee2d704c293bcfb9
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7148742542?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147651509?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147651397?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147651269?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147651150?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147541336?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147541219?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147541151?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147541058?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147540961?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147540874?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7147540763?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7146656598?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7146656438?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7146656363?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7146656211?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7146655970?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7146647004?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-r-binary-packages,github,{},r/github.packages.yml,38918ef0d59387895759223bee2d704c293bcfb9
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146691785?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146689306'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146688733?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146703558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146659036?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146630307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146631943?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/7146676064?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146710986?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146678498?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7146658127?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146651359?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146642462?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146697086?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146631425?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146680193?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146659915?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146645812?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146708690?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146671377?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146680931?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146672327?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146668851?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146701184?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146679135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146657327?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146685737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146694274?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146627178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146714741?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7146706433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146698391?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146712802?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146644178?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,38918ef0d59387895759223bee2d704c293bcfb9
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7146652262?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,38918ef0d59387895759223bee2d704c293bcfb9
diff --git a/csv_reports/nightly-packaging-2022-07-02-0.csv b/csv_reports/nightly-packaging-2022-07-02-0.csv
deleted file mode 100644
index ea9392419ba..00000000000
--- a/csv_reports/nightly-packaging-2022-07-02-0.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160837749?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7160836006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160842123?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7160858546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160853757?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7160845521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160849821?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160843228?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7160839367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160836850?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7160836515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7160856232?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7160859568?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7161443741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7161088374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7160993004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7161393630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7161439309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7161107180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7161053948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7161381595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7161005063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7161300721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7161228271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7161349933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7161471495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7161434737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7161207142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7161520069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7161231961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7161043401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7161653583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7161629066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7161117543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7161181350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7161573944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7161687432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7161132318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7161673416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7161254640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7161221370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7161522348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7161385229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7161388490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7160838167?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7160853126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7160856792?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7160852893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7160847418?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7160855773?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7160842480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7160933316?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7160859008?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7160858971?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-java-jars,github,{},java-jars/github.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7160835159?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7160835564?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-python-sdist,github,{},python-sdist/github.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7161484079?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161160877?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161160860?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161160843?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161160826?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161083242?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161083196?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161083166?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161083136?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161083106?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161083087?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7161083059?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7160840255?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7160840216?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7160840168?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7160840132?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7160840097?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7160837099?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-r-binary-packages,github,{},r/github.packages.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7160845746?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7160852645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7160835777?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7160857861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7160855376?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7160846759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7160860341?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7160839148?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7160848649?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7160846493?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7160850830?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160834541?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160844590?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160851262?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160838759?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160857033?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160839904?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160851489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-macos-mavericks-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7160850077?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160849204?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160854502?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160843498?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160852458?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160850536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7160834707'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160841103?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7160859768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160846382?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7160850274'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160840614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7160854725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160841743?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160857332?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160842780?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7160844770?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-02-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,01e3c0a704b1522ecc4e2b9d62f8ef96e01b70fe
diff --git a/csv_reports/nightly-packaging-2022-07-03-0.csv b/csv_reports/nightly-packaging-2022-07-03-0.csv
deleted file mode 100644
index 328b2eaa4cb..00000000000
--- a/csv_reports/nightly-packaging-2022-07-03-0.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167584776?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167574229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167582858?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167579468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167585366?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167568860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167575074?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167565453?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167568555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167572801?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167562623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7167559116?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7167566733?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7167574103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7168101218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7167736450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7167888248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7168160799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167986852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7167995654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7168167056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7168165084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7167805742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167778893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7168344734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7167734897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7168049354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167824545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7168247892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/7167735143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7168048012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7167865681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7168142470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7168303842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7168513363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7168171326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7168359637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7169309736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7167914664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7168027838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7168384898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7167937176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7167864253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7168465575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7167563664?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7167570118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7167566423?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7167585048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7167560717?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7167565107?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7167580383?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7167693617?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167586937?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167586864?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-java-jars,github,{},java-jars/github.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7167577806?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7167580941?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-python-sdist,github,{},python-sdist/github.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7168301234?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167922142?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167922117?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167922098?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167922067?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167775808?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167775784?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167775764?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167775738?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167775717?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167775698?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167775676?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167567111?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167567073?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167567025?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167567000?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167566961?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7167564592?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-r-binary-packages,github,{},r/github.packages.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7167576474?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7167570836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7167573531?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7167566106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7167567950?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7167560910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167561660?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7167584489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167585631?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167563510?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7167578034?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167575818?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167562952?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167569788?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167587681?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167560408?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167586108?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167559719?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167574641?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167584059?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167582165?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167583643?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167560018?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167571238?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167565727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167581185?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167587296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167578528?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167564188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167573247?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7167585785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167567625?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167577105?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167577455?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7167587898?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-03-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,755fb9f31a43b26e74ac82622e4667279dc442d6
diff --git a/csv_reports/nightly-packaging-2022-07-04-0.csv b/csv_reports/nightly-packaging-2022-07-04-0.csv
deleted file mode 100644
index 73cdc7ccdcd..00000000000
--- a/csv_reports/nightly-packaging-2022-07-04-0.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177067465?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177078812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177004546?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177068432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177026001?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177050164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177014970?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177043541?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177039566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177081219?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177020537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7177036878?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7177057726?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7177037129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177654159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7178248154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7178677094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7178537989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7178173771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7178285323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7179067331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7177530285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7179553923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7178806978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7177566019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7179142866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7179326708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177598742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7177538778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7177532087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7179028629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7179473406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7179469866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7179082547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7178170555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7183838735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7178807475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7178505835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7178133510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7178665961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7179176627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7178394742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7179336804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7177928902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177022544?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177073696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177026830?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177028622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7177035176?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7177046900?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7177044444?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7177317208?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177059842?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177059716?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-java-jars,github,{},java-jars/github.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7177038542?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7177012402?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-python-sdist,github,{},python-sdist/github.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7179606281?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7178035837?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7178035723?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7178035620?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7178035536?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177692497?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177692393?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177692273?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177692169?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177692066?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177691971?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177691869?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177054748?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177054607?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177054470?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177054374?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177054276?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7177046187?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-r-binary-packages,github,{},r/github.packages.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177082520?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177087271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7176998458?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177010775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177089502?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177083189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177015885?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7177086411?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177040580?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177052792?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7177041556?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177061493?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177088410?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177045306?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177021578?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177019777?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177014257?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177003582?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177069625?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177060536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177055559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177080371?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177076947?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177062241?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177007446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177075863?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177053196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177067689?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177030322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177070538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7177017025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177056651?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177006178?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177010170?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7177035870?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-04-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,897a4c0ce73c3fe07872beee2c1d2128e44f6dd4
diff --git a/csv_reports/nightly-packaging-2022-07-05-0.csv b/csv_reports/nightly-packaging-2022-07-05-0.csv
deleted file mode 100644
index 510d36e7dd9..00000000000
--- a/csv_reports/nightly-packaging-2022-07-05-0.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192880868?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192874211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192934717?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192856971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192908017?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192865117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192853812?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192930767?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192906500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192877758?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192909635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7192878478?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7192938116?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7193457180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7194719737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7193420840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7193847418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7195158469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7194664944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7195185879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7194110871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7194945902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7194955382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7193449943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7193357249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7194477320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7195275963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7194589888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7193428795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7193950745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7193653927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7194643873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7195508109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7193823298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7193964533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7194145511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7195153902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7193986335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7194042799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7194451340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7195680642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7195025594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7194526065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7194967411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192866436?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192882335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192928102?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192941724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7192917748?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7192912599?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7192915743?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7193347565?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7192926445?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7192926299?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-java-jars,github,{},java-jars/github.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7192860570?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7192900111?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-python-sdist,github,{},python-sdist/github.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7195387839?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193984213?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193984119?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193984017?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193983914?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193595598?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193595494?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193595413?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193595288?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193595166?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193595057?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7193594909?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7192896117?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7192896009?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7192895866?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7192895618?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7192895399?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7192887887?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-r-binary-packages,github,{},r/github.packages.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7192898121?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192890766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192925619?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192886149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192871327?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192863939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192936266?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7192860001?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192867589?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192879627?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7192858327?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192918661?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192885650?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192890061?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192933774?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192928725?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192913815?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192946484?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192911366?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192937476?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192894499?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192856349?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192873375?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192943234?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192861370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192929820?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192944997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192895881?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192943914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192939018?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7192920840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192905317?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192863325?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192900839?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7192875690?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-05-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,e44f79af8e2eef837ec59b7941e4eaa813a2dd44
diff --git a/csv_reports/nightly-packaging-2022-07-06-0.csv b/csv_reports/nightly-packaging-2022-07-06-0.csv
deleted file mode 100644
index 001bf08e1b0..00000000000
--- a/csv_reports/nightly-packaging-2022-07-06-0.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211261576?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7211267383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211347341?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211338615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211273938?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211304568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211344358?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211268837?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211262631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211321460?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211263357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7211313671?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7211255307?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7211300511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7212763229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7211821739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7211800991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7211937258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7212421086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7213557951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7212983083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7212419845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7211899117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211924440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7212510645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7213272607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7213143480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7213121478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7212586379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7211915705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7213534765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7213540829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7213888915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7212818734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7212866201'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7213729202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7213776108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7213984766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7212385086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7212173900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7212439325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7212340469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7213355848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7213198642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211346170?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211266242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211260423?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211298143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7211283794?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7211303995?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7211299881?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7211616411?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211281093?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211280942?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-java-jars,github,{},java-jars/github.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7211264869?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7211323620?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-python-sdist,github,{},python-sdist/github.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7213668050?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7212366348?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7212366250?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7212366136?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7212366021?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211943156?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211943042?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211942924?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211942801?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211942677?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211942558?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211942438?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211306395?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211306197?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211306120?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211306000?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211305484?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7211297599?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-r-binary-packages,github,{},r/github.packages.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211329399?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211333388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211295634?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211250240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211322337?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211329804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211306734?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/7211328106?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211334825?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211340543?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7211259242?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211314604?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211296536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211284508?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211286989?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211294560?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211320450?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211336823?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211253016?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211289013?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211345245?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211331535?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211285527?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211309176?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7211342107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211337839?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211290602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211292089?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211279708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211289966?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7211281709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211265723?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211254019?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211341119?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7211306257?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-06-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4550cd052a2a724177fb422cdaf26a22d796eac3
diff --git a/csv_reports/nightly-packaging-2022-07-07-0.csv b/csv_reports/nightly-packaging-2022-07-07-0.csv
deleted file mode 100644
index a17d730c862..00000000000
--- a/csv_reports/nightly-packaging-2022-07-07-0.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229908046?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229909466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7229874513?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229886263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229913375?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229871824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229929561?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229907140?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229936954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229922185?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229931244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7229879584?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7229903898?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-clean,pending,['https://github.com/ursacomputing/crossbow/runs/7229916245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py310-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7229937170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py310-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/7229886236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py310-cuda,pending,['https://github.com/ursacomputing/crossbow/runs/7229898592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7235385139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py37-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7229885392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py37-cpu-r40,pending,['https://github.com/ursacomputing/crossbow/runs/7229906703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py37-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/7229884439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7235236176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py37-ppc64le,pending,['https://github.com/ursacomputing/crossbow/runs/7229862392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py38-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7229918986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py38-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/7229900867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7235649718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7235159013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7234634004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py39-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/7229875987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py39-cuda,pending,['https://github.com/ursacomputing/crossbow/runs/7229868393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-linux-gcc-py39-ppc64le,pending,['https://github.com/ursacomputing/crossbow/runs/7229879472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-osx-arm64-clang-py310,pending,['https://github.com/ursacomputing/crossbow/runs/7229924378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-osx-arm64-clang-py38,pending,['https://github.com/ursacomputing/crossbow/runs/7229903068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7235244455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-osx-clang-py310,pending,['https://github.com/ursacomputing/crossbow/runs/7229853348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-osx-clang-py37-r40,pending,['https://github.com/ursacomputing/crossbow/runs/7229905668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-osx-clang-py37-r41,pending,['https://github.com/ursacomputing/crossbow/runs/7229883369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-osx-clang-py38,pending,['https://github.com/ursacomputing/crossbow/runs/7229901214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-osx-clang-py39,pending,['https://github.com/ursacomputing/crossbow/runs/7229894519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-win-vs2017-py310,pending,['https://github.com/ursacomputing/crossbow/runs/7229882715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-win-vs2017-py37-r40,pending,['https://github.com/ursacomputing/crossbow/runs/7229923395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-win-vs2017-py37-r41,pending,['https://github.com/ursacomputing/crossbow/runs/7229893303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-win-vs2017-py38,pending,['https://github.com/ursacomputing/crossbow/runs/7229881356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-conda-win-vs2017-py39,pending,['https://github.com/ursacomputing/crossbow/runs/7229857067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229930531?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229870093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229862810?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229848411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7229861065?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7229896744?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7229935227?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7230299472?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7229934353?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7229934219?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-java-jars,github,{},java-jars/github.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7229864675?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7229887769?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-python-sdist,github,{},python-sdist/github.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7231439955?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7231069719?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7231069611?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7231069488?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7231069371?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230690826?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230690707?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230690558?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230690435?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230690320?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230690218?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230690094?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230689969?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230001036?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230000855?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230000720?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230000559?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7230000307?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7229928019?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-r-binary-packages,github,{},r/github.packages.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229932392?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229854039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229911479?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229847217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229857651?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229926655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229933671?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7229894466?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229889018?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229868714?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7229901581?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229925516?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229866994?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229919322?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229898916?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229914450?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229871275?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229924653?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229876242?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229909062?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229912325?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229866255?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229928869?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229917156?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229889588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229853760?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229895908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229877378?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229890682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229869403?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7229849945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229916328?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229891918?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229858637?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7229873365?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-07-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,6f95d9dfdd523dc5fa30505c68bf5f1b547e0e30
diff --git a/csv_reports/nightly-packaging-2022-07-08-0.csv b/csv_reports/nightly-packaging-2022-07-08-0.csv
deleted file mode 100644
index ec21455e7f4..00000000000
--- a/csv_reports/nightly-packaging-2022-07-08-0.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248405437?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248398721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248387892?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248395762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248390865?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248406760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248401508?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248435775?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248441677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248416044?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248450462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7248448578?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_JEMALLOC=True', 'image': 'conan'}",docker-tests/github.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7248451756?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7249870811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7250361803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7248856391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7250469921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7249645022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7249043136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7250121344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7248929537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7248966329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7249618516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7250362418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7250623222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7249510503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7249056993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7249752646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7248971975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7250189186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7249072047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7249716588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7250403403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7250840010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7250269187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7250596836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7250138170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/7249966405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7251118796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7249325643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7250316786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7249848568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7249869967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7249342235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248412927?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248422247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248432267?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248446718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7248407988?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/7248404620?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7248420099?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7248831302?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7248437631?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7248437472?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-java-jars,github,{},java-jars/github.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7248461049?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7248399559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-python-sdist,github,{},python-sdist/github.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7249935854?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249306418?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249306330?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249306238?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249306121?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249081579?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249081492?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249081372?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249081194?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249081115?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249081036?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249080852?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7249080718?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7248427803?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7248427708?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7248427620?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7248427534?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7248427433?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7248420967?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-r-binary-packages,github,{},r/github.packages.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248425435?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248439083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248396999?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248397937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248433173?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248380213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248393609?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7248406141?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248423573?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248429706?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7248456321?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248424650?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248458231?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248441222?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248381418?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248392270?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248427968?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248389735?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248414301?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248433897?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248421811?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248438663?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248430613?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248400397?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248408641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248416884?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248459812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248395286?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248411762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248382291?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7248436319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248431508?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248453132?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248386980?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7248403703?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-08-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,6cc37cf2d1ba72c46b64fbc7ac499bd0d7296d20
diff --git a/csv_reports/nightly-packaging-2022-07-09-0.csv b/csv_reports/nightly-packaging-2022-07-09-0.csv
deleted file mode 100644
index 772c4f9fd1b..00000000000
--- a/csv_reports/nightly-packaging-2022-07-09-0.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262615533?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262614490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262594853?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262613288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262615976?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262613490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262605131?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262611973?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262613783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262611225?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262601282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7262618648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7262594187?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7262605691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262861591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7263001158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7262808533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7263153462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262802806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7263072673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7262933580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7263296197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7262858200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7263146916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7262955711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7263213815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7263073451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7263121011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7263232659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7262747399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7263266877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7263151577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7263082496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7263398225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7262897288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-osx-clang-py37-r40,pending,['https://github.com/ursacomputing/crossbow/runs/7262614312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7262977536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7262953732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7263418465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7263356881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7262900379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7263272152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7263152209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7262892889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262612607?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262598982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262604020?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262603188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7262609811?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/7262604601?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7262618866?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7262666353?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262598511?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262598434?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-java-jars,github,{},java-jars/github.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7262599338?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7262602154?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-python-sdist,github,{},python-sdist/github.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7263057752?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262930749?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262930719?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262930684?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262930652?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262817944?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262817908?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262817874?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262817830?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262817803?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262817780?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262817744?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262817693?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262616613?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262616579?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262616550?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262616510?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262616477?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7262614677?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-r-binary-packages,github,{},r/github.packages.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262612408?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262602649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262614891?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262615162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262597739?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262596195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262602481?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/7262597009?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262600448?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262610500?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7262600804?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262608558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262611580?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262603018?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262603817?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262617337?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262607992?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262605324?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262610064?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262612348?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262609493?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262596745?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262604880?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262599765?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262594335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262610889?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262616517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262601090?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262610648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262615890?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7262605458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262597931?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262606031?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262607430?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7262606339?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-09-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d404c9c6a0d6ce94f054596e667205995ef944d2
diff --git a/csv_reports/nightly-packaging-2022-07-10-0.csv b/csv_reports/nightly-packaging-2022-07-10-0.csv
deleted file mode 100644
index d784f10f4bc..00000000000
--- a/csv_reports/nightly-packaging-2022-07-10-0.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269411259?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269402357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269407601?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269392974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269404842?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269400061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269405245?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269388997?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269393911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269412838?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269414109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7269395969?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7269398623?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7269400105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269891104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7270189795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7269949134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7270086010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269898038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7269914908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7269870961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7270030724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7270155256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269679980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7269563398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7269857996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7270072596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269659591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7270076217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7269932245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7269859236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7269686542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7270216136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7269694248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7270046341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7270243778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7269769894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7269788506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7270208695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7270286245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7269676325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7269735407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7269687407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7269900415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269410395?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269401219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269392313?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269413351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7269389467?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/7269414538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7269405545?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7269537348?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269395044?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269395010?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-java-jars,github,{},java-jars/github.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7269400977?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7269412063?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-python-sdist,github,{},python-sdist/github.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7269941748?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269827377?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269827344?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269827311?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269827284?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269617602?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269617565?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269617531?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269617502?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269617470?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269617438?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269617410?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269617385?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269404614?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269404594?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269404574?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269404557?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269404519?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7269402292?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-r-binary-packages,github,{},r/github.packages.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269415425?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269413065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269403940?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269394267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269397932?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269391531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269397450?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7269402702?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269399107?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269390881?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7269389942?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269408240?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269400655?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269408631?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269398283?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269411621?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269397058?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269412463?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269408891?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269409622?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269410948?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269393505?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269409837?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269399478?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269413601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269394634?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269390387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269414862?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269411699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269407900?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7269406981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269404256?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269399792?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269388374?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7269392806?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-10-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,73cdd6a59b52781cc43e097ccd63ac36f705ee2e
diff --git a/csv_reports/nightly-packaging-2022-07-11-0.csv b/csv_reports/nightly-packaging-2022-07-11-0.csv
deleted file mode 100644
index 71877c16ede..00000000000
--- a/csv_reports/nightly-packaging-2022-07-11-0.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278948689?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278974674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278993701?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278975576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278956895?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278986739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278949812?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278985682?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278972675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278996971?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278967689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7278960530?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7278938039?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7279010630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7281402627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7279946526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7279473041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7279559237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7280885080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7281352975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7280085895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7280690959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7279530111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7280353023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7280415801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7279536971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7279792276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7281441900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7281298985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7280861197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7280672268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7279777326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7280746749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7280364857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7280986123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7280242299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7281045746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7281577809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7281408641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7280850636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7280000709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7281357922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7279999127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7280094856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7279016260?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278991276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278979490?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278999220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7278947684?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7279022835?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7279004213?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7279484241?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7279007665?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7279007530?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-java-jars,github,{},java-jars/github.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7278955089?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7278966143?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-python-sdist,github,{},python-sdist/github.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7280803148?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7280439384?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7280439302?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7280439204?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7280439129?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7279711362?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7279711218?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7279711109?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7279710995?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7279710881?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7279710772?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7279710700?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7279710586?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7278967149?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7278966961?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7278966772?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7278966648?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7278966561?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7278958287?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-r-binary-packages,github,{},r/github.packages.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278990744?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278935546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278962630?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7279024686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278972131?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278950339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7279022099?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7278982245?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278961526?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7279006524?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7278994670?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278974149?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7279010501?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278967235?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278983111?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278998421?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7279014670?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278971009?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278951496?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2010-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278944600?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-manylinux2010-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2010-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7279020359?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-manylinux2010-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2010-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278955865?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-manylinux2010-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2010-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278984804?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-manylinux2010-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2010'}",python-wheels/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7279003496?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278945364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278970024?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7279005444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278946806?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278963523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278938960?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7278939472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278941236?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278988897?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7279001858?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7278954033?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-11-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,1635f3ba0215477003aa3b7f30c06c5f6e3a171b
diff --git a/csv_reports/nightly-packaging-2022-07-12-0.csv b/csv_reports/nightly-packaging-2022-07-12-0.csv
deleted file mode 100644
index e43fb00e6a8..00000000000
--- a/csv_reports/nightly-packaging-2022-07-12-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298132418?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298133628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298159495?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298114067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298166798?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298112742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298125547?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298157684?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298102054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298134544?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298171561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7298117899?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7298101574?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7298688376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7299297490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7298653536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7300173746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7300744779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7300560591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7299372068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7300070476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7300504868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7300392116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298757407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7298654054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7300507145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7299958723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7299561246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7298783503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7298648911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7299840146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7299496945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7299147718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7301005424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7299164722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7300534203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7300355086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7300181860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7301147703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7300317475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7300030970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7299909143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7298995102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7299055803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298095731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298108677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298098553?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298121949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7298151523?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7298142522?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7298103516?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7301000283?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298155911?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298155765?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-java-jars,github,{},java-jars/github.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7298115977?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7298145794?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-python-sdist,github,{},python-sdist/github.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7299712487?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7299357706?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7299357570?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7299357480?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7299357354?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298849720?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298849573?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298849450?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298849353?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298849263?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298849168?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298849065?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298848895?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298131659?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298131575?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298131480?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298131293?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298131090?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7298123264?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-r-binary-packages,github,{},r/github.packages.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298135459?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298161978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298146919?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298127895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298093235?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298137614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298131812?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7298156731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298179307?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298174079?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7298129612?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298175522?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298099527?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298150282?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298092550?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298154983?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298141454?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298144366?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298106773?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298097514?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298104267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298171134?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298167301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298127434?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298143135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298111920?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7298110354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298177505?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298136547?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298161360?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7298140408?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-12-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,2519230121b9be3ecac01ac3ed2b610382dbca48
diff --git a/csv_reports/nightly-packaging-2022-07-13-0.csv b/csv_reports/nightly-packaging-2022-07-13-0.csv
deleted file mode 100644
index ee2252b7ecd..00000000000
--- a/csv_reports/nightly-packaging-2022-07-13-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317316690?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317361754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317362756?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317350683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317319758?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317380980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317349271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317327414?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317352048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317325911?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317314805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7317329893?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7317377719?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7317360844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7318224941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7317896366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7317840429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7318070545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7318658380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7317890500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7318605254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7317825754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7319268602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7318566546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7318926023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7318745113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7319221318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7318580725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7317836336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7318727518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7319462528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7319549975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7318908658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7319546501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7319793902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7318729835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7319977688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7320460224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7318330390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7319908366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7319908848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7319658149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7318706435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7318229235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317350112?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317333025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317357669?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317327562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7317331526?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7317359432?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7317317733?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7317959089?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7317321125?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7317320896?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-java-jars,github,{},java-jars/github.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7317358274?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7317363803?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-python-sdist,github,{},python-sdist/github.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7318843791?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318394260?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318394160?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318394052?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318393898?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318033073?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318032938?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318032822?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318032717?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318032627?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318032530?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318032407?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7318032276?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7317387016?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7317386881?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7317386719?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7317386563?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7317386356?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7317377174?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-r-binary-packages,github,{},r/github.packages.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317339478?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317311190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317384951?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317382344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317345991?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317371734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317380009?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7317308928?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317369753?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317323925?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7317323199?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317360436?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317342430?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317313355?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317307343?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317356937?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317322558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317347192?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317355161?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317306597?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317307962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317355978?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317335233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317347650?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317321234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317375809?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7317365169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317305884?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317325086?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317312626?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,8608e193c14427d22324023a7a9849f9389c9f8a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7317340291?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-13-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,8608e193c14427d22324023a7a9849f9389c9f8a
diff --git a/csv_reports/nightly-packaging-2022-07-14-0.csv b/csv_reports/nightly-packaging-2022-07-14-0.csv
deleted file mode 100644
index df86db34de2..00000000000
--- a/csv_reports/nightly-packaging-2022-07-14-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336427472?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336402653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336407678?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336423154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336417857?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336425059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336462245?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336440176?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336435741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336437784?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336432956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7336458002?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7336398097?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7337048066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7338377058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7338143664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7336893924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7338666701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7338453488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7337542995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7338348511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7337013490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7336973555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7338514780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7338491397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/7336417137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7337038243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7338216412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7336990739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7337632683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7337117599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7337934722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7339120191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7338977197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7338029378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7338265858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7337722519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7337511374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7337878092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7337435963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7339121192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7337631869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7339201233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7338452290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336448294?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336415141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7336404678?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336458684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7336447461?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7336424206?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7336416252?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/runs/7336704581?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7336430858?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7336430750?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-java-jars,github,{},java-jars/github.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7336453361?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7336413811?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-python-sdist,github,{},python-sdist/github.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7338152049?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337773591?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337773483?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337773381?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337773227?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337078703?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337078607?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337078515?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337078410?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337078293?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337078183?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337078086?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7337077970?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7336463254?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7336463157?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7336463080?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7336462954?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7336462821?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7336454960?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-r-binary-packages,github,{},r/github.packages.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336393640?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336409786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336444470?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336461265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336437310?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336397053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336401178?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7336443743?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336463405?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336460519?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7336400322?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336404180?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336405552?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336409266?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336399043?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336408419?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336445662?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336407105?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336449711?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336429932?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336395238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336394920?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336421663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336412876?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336452080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336392890?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7336441586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336425611?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336418689?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336450531?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7336441337?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,e766828c699c6c74eba3b8c5de99e541017b8b9e
diff --git a/csv_reports/nightly-packaging-2022-07-15-0.csv b/csv_reports/nightly-packaging-2022-07-15-0.csv
deleted file mode 100644
index 1c5bc7f277f..00000000000
--- a/csv_reports/nightly-packaging-2022-07-15-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354706059?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354693365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354743571?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354699655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354701660?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354737276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354748401?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354694664?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354744250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354710047?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354734857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7354720275?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7354739994?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7356650278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7355461221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7357018889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7355238160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7355447376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7355303508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7356788425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7357228585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7355171118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7357227499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7356626538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7355717940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7357064326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7355990018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7355301693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7355308627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7356462048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7355264166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7356954465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7357051118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7356179183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7357523992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7355882323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7356694435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7358729846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7356363294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7357374293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7356582685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7356544081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7356540367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7356168708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354746782?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354750217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354696027?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354700613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7354747398?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7354751915?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7354755751?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7355009333?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7354733318?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7354733181?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-java-jars,github,{},java-jars/github.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7354726269?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7354715465?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-python-sdist,github,{},python-sdist/github.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7356337570?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355951893?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355951738?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355951617?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355951485?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355332555?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355332462?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355332354?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355332249?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355332133?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355332021?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355331910?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7355331779?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7354749573?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7354749461?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7354749384?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7354749233?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7354749074?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7354741547?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-r-binary-packages,github,{},r/github.packages.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354754227?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354715909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354711496?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354719329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354714783?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354727453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354732153?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7354731459?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354703914?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354753990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7354722600?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354756472?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354740648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354742308?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354725306?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354744212?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354692835?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354718569?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354699364?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354712276?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354707268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354698904?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354738075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354702731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354735546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354751306?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7354758598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354729984?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354703230?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354736902?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7354757741?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-15-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,f295da4cfdcf102d9ac2d16bbca6f8342fc3e6a8
diff --git a/csv_reports/nightly-packaging-2022-07-16-0.csv b/csv_reports/nightly-packaging-2022-07-16-0.csv
deleted file mode 100644
index 02afb9c0afa..00000000000
--- a/csv_reports/nightly-packaging-2022-07-16-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369411737?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369416022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369410110?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369409277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369410960?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369406822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369418568?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369404808?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369424505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369408725?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369407194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7369424935?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7369414927?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7369691617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369908978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7369789527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7369612729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7370161114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369979851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7369627159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7369932757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7370100177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7370142318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369986451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7369826113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7370072748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7369807144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7370058215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7369931408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7369622811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7369794324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7370002318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7369997135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7369682375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7369738520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7369858813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7369839779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7370012785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7370259647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7369679266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7369795112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7370243518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7369740982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,afc6840c28f69f1554fa4a974b90195348f48978
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7369693916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,afc6840c28f69f1554fa4a974b90195348f48978
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369405412?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369415666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369417768?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369404840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7369413997?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,afc6840c28f69f1554fa4a974b90195348f48978
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7369403660?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,afc6840c28f69f1554fa4a974b90195348f48978
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7369412189?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,afc6840c28f69f1554fa4a974b90195348f48978
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7369548170?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369424033?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369424004?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-java-jars,github,{},java-jars/github.yml,afc6840c28f69f1554fa4a974b90195348f48978
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7369415322?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,afc6840c28f69f1554fa4a974b90195348f48978
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7369422305?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-python-sdist,github,{},python-sdist/github.yml,afc6840c28f69f1554fa4a974b90195348f48978
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7369951667?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369817686?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369817648?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369817617?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369817563?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369595439?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369595417?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369595398?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369595377?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369595360?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369595337?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369595312?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369595290?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369404810?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369404731?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369404690?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369404656?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369404565?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7369402551?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-r-binary-packages,github,{},r/github.packages.yml,afc6840c28f69f1554fa4a974b90195348f48978
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369423365?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369418656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369403173?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369408083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369411185?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369422631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369418061?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7369408860?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369424779?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369422083?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7369412481?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369417318?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369415500?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369406335?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369422494?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369406649?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369421900?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369405791?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369406004?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369414270?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369413150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369422932?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369404390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369419425?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369421586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369407891?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7369412970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369410614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369408412?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369402881?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,afc6840c28f69f1554fa4a974b90195348f48978
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7369417038?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,afc6840c28f69f1554fa4a974b90195348f48978
diff --git a/csv_reports/nightly-packaging-2022-07-17-0.csv b/csv_reports/nightly-packaging-2022-07-17-0.csv
deleted file mode 100644
index 8b1d3a6231d..00000000000
--- a/csv_reports/nightly-packaging-2022-07-17-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376365895?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376368934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7376358847?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7376364890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376377547?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376364167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376379300?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376368652?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376380577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7376369324?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7376363844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7376362653?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7376370278?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7376546584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376948409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7376534527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7377094468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7376603834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376907359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7376758877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7376558112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7376530994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7376792610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376618123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7377084254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7376843264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7376989261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376558231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7377101198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7377025140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7376897646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7376766831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7376583468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7377147389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7376649250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7376978040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7376940698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7376848145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7377186171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7376934917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7377149375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7377493951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7376694360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,98a89c7338ffae847b25637863f59ad378932b78
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7376671217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,98a89c7338ffae847b25637863f59ad378932b78
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376377070?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376364403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376361906?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376373602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7376360863?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,98a89c7338ffae847b25637863f59ad378932b78
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7376357324?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,98a89c7338ffae847b25637863f59ad378932b78
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7376377883?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,98a89c7338ffae847b25637863f59ad378932b78
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7376498861?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376373058?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376372978?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-java-jars,github,{},java-jars/github.yml,98a89c7338ffae847b25637863f59ad378932b78
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7376380012?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,98a89c7338ffae847b25637863f59ad378932b78
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7376376196?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-python-sdist,github,{},python-sdist/github.yml,98a89c7338ffae847b25637863f59ad378932b78
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7376936693?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376806351?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376806329?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376806311?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376806292?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376636139?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376636087?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376636053?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376636022?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376635990?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376635959?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376635915?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376635863?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376378536?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376378488?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376378446?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376378410?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376378364?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7376375195?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-r-binary-packages,github,{},r/github.packages.yml,98a89c7338ffae847b25637863f59ad378932b78
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376363588?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376364665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376381169?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376374810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376361601?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376367622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376378140?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7376372511?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376379553?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376365558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7376380374?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376366646?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376362378?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376378572?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376374666?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376367292?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376363287?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376379774?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376373450?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376374432?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376358458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376366814?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376360457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376372683?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376367411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376359072?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7376366069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376369522?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376365285?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376370910?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,98a89c7338ffae847b25637863f59ad378932b78
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7376372017?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-17-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,98a89c7338ffae847b25637863f59ad378932b78
diff --git a/csv_reports/nightly-packaging-2022-07-18-0.csv b/csv_reports/nightly-packaging-2022-07-18-0.csv
deleted file mode 100644
index 0a108b88ce7..00000000000
--- a/csv_reports/nightly-packaging-2022-07-18-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385767004?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385780299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7385779728?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7385813125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385758547?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385747592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385774043?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385748895?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385762398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7385764133?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7385808556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7385764753?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7385781443?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7386483266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7386538745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7386487996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7387007059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7386471590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7388442650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7386456517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7386512469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7386383142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7387192442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7387814071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7387675451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7387370877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7387700218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7387208170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7387030280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7387943978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7388389242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7388267342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7387359061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7388143221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7388165548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7387122326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7388603335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7387412468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7388238272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7388693634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7387338955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7387122778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7388148796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,fccbfea51fb62adab4019cea122469db14181aa8
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7386788166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,fccbfea51fb62adab4019cea122469db14181aa8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385801807?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385781765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385814253?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385812258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7385805726?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,fccbfea51fb62adab4019cea122469db14181aa8
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7385777896?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,fccbfea51fb62adab4019cea122469db14181aa8
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7385808057?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,fccbfea51fb62adab4019cea122469db14181aa8
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7386002949?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7385784334?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7385784190?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-java-jars,github,{},java-jars/github.yml,fccbfea51fb62adab4019cea122469db14181aa8
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7385803000?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,fccbfea51fb62adab4019cea122469db14181aa8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7385772187?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-python-sdist,github,{},python-sdist/github.yml,fccbfea51fb62adab4019cea122469db14181aa8
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7387145814?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386749425?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386749327?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386749197?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386749054?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386705143?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386705029?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386704924?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386704769?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386704670?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386704543?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386704445?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7386704346?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7385766335?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7385766169?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7385766092?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7385765966?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7385765832?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7385757953?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-r-binary-packages,github,{},r/github.packages.yml,fccbfea51fb62adab4019cea122469db14181aa8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385794723?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385799801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385782854?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385789657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385770351?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385770816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385807380?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7385809532?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385755628?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385765290?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7385795447?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385773363?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385798364?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385810200?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385806546?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385754664?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385766480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385759304?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385815183?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385801147?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385774932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385774616?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385756942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385784537?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385760522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385769249?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7385755566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385777142?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385794021?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385767674?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,fccbfea51fb62adab4019cea122469db14181aa8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7385804841?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-18-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,fccbfea51fb62adab4019cea122469db14181aa8
diff --git a/csv_reports/nightly-packaging-2022-07-19-0.csv b/csv_reports/nightly-packaging-2022-07-19-0.csv
deleted file mode 100644
index c98d265dece..00000000000
--- a/csv_reports/nightly-packaging-2022-07-19-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405463353?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405486898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405476191?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405485250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7405504450?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405511924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405467702?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405468320?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405496116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405489172?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405466117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7405501502?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7405523718?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7407256680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7406923708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7406004979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7406645751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7407976918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7408067672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7406256432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7406033487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7407825778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7406111136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7406932210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7407390278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7407199324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7407221529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7406230691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7407547870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7407360421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7406242018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7407384073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7407005694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7407179164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7406602089'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7408431901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7406842205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7408498217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/7408258403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7406695017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7408274493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7406824825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7407155545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7408068971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405477852?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405512660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405454501?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405471415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7405511551?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7405491516?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7405505271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7405767478?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7405495251?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7405495132?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-java-jars,github,{},java-jars/github.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7405506216?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7405471000?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-python-sdist,github,{},python-sdist/github.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7407276468?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406817238?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406817126?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406817028?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406816880?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406489629?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406489500?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406489356?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406489244?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406489115?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406489007?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406488861?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7406488696?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7405501492?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7405501272?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7405501162?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7405501054?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7405500857?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7405493472?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-r-binary-packages,github,{},r/github.packages.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405522027?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405448992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405482377?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405452869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405481174?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405513467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405507919?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7405518027?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405494533?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405457465?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7405450203?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405520222?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405498371?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405473614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405462489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405491027?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405464739?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405492547?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405516622?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405455382?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405518926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405500484?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405459141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405514720?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405502887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405503676?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7405501806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405515693?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405474473?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405497691?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7405510086?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,13e9e8bd2374d77c19c7bb895e6b8a71e91a9765
diff --git a/csv_reports/nightly-packaging-2022-07-20-0.csv b/csv_reports/nightly-packaging-2022-07-20-0.csv
deleted file mode 100644
index 0948d684e79..00000000000
--- a/csv_reports/nightly-packaging-2022-07-20-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425384471?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425398860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425360065?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425373586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425389605?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425399618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425359328?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425395108?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425366236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425397573?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425345669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7425339552?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7425398239?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7427233523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7426715860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7427201155'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7426155672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7427626617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7426179268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7426018858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7426025329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7426067014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7427975961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7426935419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7427251071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7426143207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7428281840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7426988154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7427597092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7427854367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/7425404781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7427207552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7428105133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7426304403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7427578303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7427518399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7427278865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7426570373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7427212414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7426475886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7426648114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7427849879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7428125695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,0330353a93eff799616bf66e0e994236393458f7
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7428122573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,0330353a93eff799616bf66e0e994236393458f7
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425387856?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425335059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425411568?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425394106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7425337904?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,0330353a93eff799616bf66e0e994236393458f7
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7425382148?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,0330353a93eff799616bf66e0e994236393458f7
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7425373518?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,0330353a93eff799616bf66e0e994236393458f7
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7425866745?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7425356848?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7425356672?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-java-jars,github,{},java-jars/github.yml,0330353a93eff799616bf66e0e994236393458f7
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7425347267?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,0330353a93eff799616bf66e0e994236393458f7
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7425348217?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-python-sdist,github,{},python-sdist/github.yml,0330353a93eff799616bf66e0e994236393458f7
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7427150609?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426725880?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426725787?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426725684?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426725562?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426420665?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426420539?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426420394?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426420228?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426420109?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426420015?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426419908?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7426419723?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7425409668?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7425409534?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7425409349?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7425409249?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7425409138?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7425401661?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-r-binary-packages,github,{},r/github.packages.yml,0330353a93eff799616bf66e0e994236393458f7
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425334511?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425386158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425403477?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425365854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425390071?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425358573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425406810?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7425409136?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425400808?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425376873?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7425351822?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425405080?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425391659?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425382842?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425377777?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425380964?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425392760?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425355735?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425402435?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425340896?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425339389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425394201?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425370074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425362119?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425409586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7425383670?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7425350458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425342761?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425364259?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425353480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,0330353a93eff799616bf66e0e994236393458f7
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7425406077?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,0330353a93eff799616bf66e0e994236393458f7
diff --git a/csv_reports/nightly-packaging-2022-07-21-0.csv b/csv_reports/nightly-packaging-2022-07-21-0.csv
deleted file mode 100644
index 1c3d1e2615f..00000000000
--- a/csv_reports/nightly-packaging-2022-07-21-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445566939?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445558453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445593111?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445591872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445598230?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445615308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445603922?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445591244?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445584488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445617022?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445618821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7445594122?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7445558012?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7446273365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7447050800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7446907403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7447056336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7448156983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7446241736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7447018459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7446232320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7447741671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7447568310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7448132643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7446122684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7446637465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7446410735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7448166280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7447252658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7447032720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7447527838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7447714390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7446463962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7448364502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7448075202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7447588510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7448113131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7447563768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7448151500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7448609499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7446915915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7447456465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7446491501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7446511799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445551755?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445609573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445583244?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445611479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7445585334?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7445548587?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7445544904?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/runs/7445857284?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7445571078?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7445570916?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-java-jars,github,{},java-jars/github.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7445552642?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7445613851?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-python-sdist,github,{},python-sdist/github.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7447247653?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446727121?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446726985?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446726799?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446726665?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446583314?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446583192?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446583085?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446583002?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446582903?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446582761?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446582649?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7446582535?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7445583053?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7445582927?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7445582817?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7445582645?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7445582325?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7445574378?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-r-binary-packages,github,{},r/github.packages.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445564726?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445564983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445543495?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445556344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445596262?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445612460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445599027?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7445608974?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445587117?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445617635?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7445600943?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445618213?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445586660?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445561886?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445606541?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445561117?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445567798?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445603131?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445554655?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445575179?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445546981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445577625?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445590034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445583819?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445576566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445553460?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7445541791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445608236?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445621137?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445601628?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7445580606?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-21-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,433f79526bd21cd2d6cc1832294f70ff4e6cce53
diff --git a/csv_reports/nightly-packaging-2022-07-22-0.csv b/csv_reports/nightly-packaging-2022-07-22-0.csv
deleted file mode 100644
index 67b33518f22..00000000000
--- a/csv_reports/nightly-packaging-2022-07-22-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464949312?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464977938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464989138?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7465004778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464970165?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464953625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464980875?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7465009086?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464965041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7465002250?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464982144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7464967017?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7464956249?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7464987872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7466634212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7466512189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7466267232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7466827425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7465617779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7466314042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7466173102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7465464032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7466677743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7466588620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7465553886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7465450779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7465755493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7465922825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7466102335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7467135528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7466140333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7465740334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7466870184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7467237118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7465979250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7466947908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7467535937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-osx-clang-py38,pending,['https://github.com/ursacomputing/crossbow/runs/7464988690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7467642196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7467373757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7467596390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7466665512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7467283636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7465874068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464949951?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464997487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464984130?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464959067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7465006480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/7464968937?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7464999701?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7465140821?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7464939711?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7464939565?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-java-jars,github,{},java-jars/github.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7465003901?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7464999174?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-python-sdist,github,{},python-sdist/github.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7466451262?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7466062636?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7466062535?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7466062443?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7466062344?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465627379?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465627286?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465627183?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465627073?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465626985?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465626872?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465626743?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465626629?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465018237?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465017991?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465017884?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465017778?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465017619?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7465011773?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-r-binary-packages,github,{},r/github.packages.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7465000909?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464994127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464992872?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464989766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464960485?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464950744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464977639?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7464987180?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464945225?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464995544?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7464996863?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464971663?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464955421?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7465004255?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7465013543?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464940513?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464941255?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7465002692?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464958552?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464979190?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464946686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464952988?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464992025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7465007052?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464976002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464946239?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7464987134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464964602?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464947718?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7465001622?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7464991087?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-22-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,32016b1ade710a6585e2c1a1023d2e44a55420a8
diff --git a/csv_reports/nightly-packaging-2022-07-23-0.csv b/csv_reports/nightly-packaging-2022-07-23-0.csv
deleted file mode 100644
index 6bab5974d9a..00000000000
--- a/csv_reports/nightly-packaging-2022-07-23-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479861551?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479868035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479868710?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479867792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479859466?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479859617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479858253?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479868533?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479864526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479851410?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479846255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7479853944?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7479851811?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7479856783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7480060844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7480242470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7480212728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7480366713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7480061157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7480549521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7480062072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7480408505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7480575478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7480065415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7480551333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7480026834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7480574924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7480405746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7480487290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7480612327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7480369957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7480567117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7480105072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7480597990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7480160342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7480187979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7480480667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7480383815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7480132358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7480342599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7480457481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7480396678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7480119398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7480503358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479851124?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479865050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479863816?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479857896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7479862350?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/7479863302?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7479865685?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7479946191?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7479859262?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7479859225?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-java-jars,github,{},java-jars/github.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7479852832?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7479848297?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-python-sdist,github,{},python-sdist/github.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7480385407?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480287912?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480287855?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480287783?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480287718?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480059119?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480059087?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480059039?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480059014?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480058991?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480058971?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480058949?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7480058922?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7479857406?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7479857363?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7479857316?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7479857255?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7479857179?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7479855054?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-r-binary-packages,github,{},r/github.packages.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479860076?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479869040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479853016?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479856194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479862068?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479866394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479850421?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7479861821?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479860814?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479862927?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7479856524?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479848123?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479865367?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479855817?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479849301?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479864357?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479855507?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479847837?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479868898?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479856754?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479848519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479863532?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479847315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479869694?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479847162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479852339?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7479858610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479854851?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479862698?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479855303?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7479849703?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-23-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,ee2e9448c8565820ba38a2df9e44ab6055e5df1d
diff --git a/csv_reports/nightly-packaging-2022-07-24-0.csv b/csv_reports/nightly-packaging-2022-07-24-0.csv
deleted file mode 100644
index 223d1e2a037..00000000000
--- a/csv_reports/nightly-packaging-2022-07-24-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486643424?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486647365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486663460?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486661587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486654263?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486648174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486646850?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486651352?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486660383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486653341?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486662917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7486649187?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7486657272?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7486653605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7487066438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7486848702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7486812609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7487446859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7487341718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7487413720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7487123819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7486826648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7486909258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7487457902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7487162285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7487057039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7487257958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7487243322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7487417358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7486991718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7486910103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7486860803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7486858613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7487287256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7487188552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7487597498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7487345165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7487254717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7486964422'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7486943892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7487297471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7486994789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7487423658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7487264661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486646594?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486655192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486649626?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486662012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7486649790?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/7486648090?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7486642106?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7486736185?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486641438?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486641385?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-java-jars,github,{},java-jars/github.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7486660060?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7486645260?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-python-sdist,github,{},python-sdist/github.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7487149383?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7487003691?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7487003650?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7487003615?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7487003587?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486918646?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486918613?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486918580?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486918553?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486918532?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486918500?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486918468?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486918430?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486661210?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486661170?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486661130?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486661100?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486661036?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7486659097?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-r-binary-packages,github,{},r/github.packages.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486663359?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486645751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486656480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486644239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486645596?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486656076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486658180?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7486661271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486656989?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486642764?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7486653829?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486665271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486642623?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486658732?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486654003?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486646127?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486650452?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486647703?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486664741?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486642248?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486643117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486659302?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486655755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486641760?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486662670'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486655635?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7486654544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486665589?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486660982?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486664355?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7486652559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,70904dffef25a8c883a1a829c66a1d30a7d9c249
diff --git a/csv_reports/nightly-packaging-2022-07-25-0.csv b/csv_reports/nightly-packaging-2022-07-25-0.csv
deleted file mode 100644
index bcd2e2b7ccf..00000000000
--- a/csv_reports/nightly-packaging-2022-07-25-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496256775?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496290036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496317910?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-almalinux-9-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496265700?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496323070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496305397?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496305118?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496295651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496270681?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496321797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7496255378?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7496315932?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7498356804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7498514077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7497902214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7498864248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7497667160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496953862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7497487971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7499029517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7496826075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7497081119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7497227161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7497474852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7498888329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7496898762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7497286788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7498829322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7496838700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7496871814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7498065209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7498319979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7497722482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7497380967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7498267084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7498614244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7498771964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7498579256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7498869189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7498151811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7498442860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7497277283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7498989160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496267943?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496314951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496284261?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496281593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7496285370?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/7496294187?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7496307522?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7496788554?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496292694?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496292578?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-java-jars,github,{},java-jars/github.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7496272486?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7496273386?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-python-sdist,github,{},python-sdist/github.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7497714795?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7497348748?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7497348648?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7497348527?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7497348398?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496915830?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496915715?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496915600?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496915495?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496915385?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496915298?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496915200?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496915074?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496283231?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496283062?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496282941?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496282851?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496282693?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7496274229?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-r-binary-packages,github,{},r/github.packages.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496300400?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496310246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496311565?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496307896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496263120?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496259024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496253246?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7496261232?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496288094?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496255962?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7496271628?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496313305?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496325380?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496266414?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496270026?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496325983?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496324723?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496326943?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496314258?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496317105?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496257267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496264949?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496268543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496285839?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496289238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496302432?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7496263650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496258402?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496321146?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496287592?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7496296151?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d584b8d7a1c1a4ee1a658bcf9cde9f3a85ae172b
diff --git a/csv_reports/nightly-packaging-2022-07-26-0.csv b/csv_reports/nightly-packaging-2022-07-26-0.csv
deleted file mode 100644
index 82f6e6724fc..00000000000
--- a/csv_reports/nightly-packaging-2022-07-26-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516443597?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516440149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516370601?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516431629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516412606?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7516374787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516377851?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516402438?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516403866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516417072?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516445813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7516430070?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7516444560?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7517176190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7517417023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7518483604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7518210304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7517960806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7518850189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7518651528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7518059089'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7517724455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7518164222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7517187101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7517987021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7517145573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7517728864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7518834775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7517066993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7516963690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7517718209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7517093422'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7517360595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7518692132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7518197549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7519495747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7519032045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7518723688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7517399193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7517453919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7519162895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7517694524'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7517971771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7518646724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516391019?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516422369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516427132?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516391264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7516402888?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7516423961?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7516442538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/runs/7516894891?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7516399900?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7516399721?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-java-jars,github,{},java-jars/github.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7516394546?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7516431348?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-python-sdist,github,{},python-sdist/github.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7518238584?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517785745?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517785564?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517785419?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517785223?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517125373?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517125254?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517125126?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517125011?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517124905?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517124814?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517124719?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7517124586?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7516402412?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7516402286?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7516402170?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7516402013?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7516401847?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7516389848?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-r-binary-packages,github,{},r/github.packages.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516417814?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516414079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516435071?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516371103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516372763?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516410337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516416042?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7516438054?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516436842?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516437611?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-big-sur-cp39-universal2,pending,['https://github.com/ursacomputing/crossbow/runs/7522596929?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516373386?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516368712?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516428974?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516401260?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516406085?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516385190?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516383160?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516388347?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516396497?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516430518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516439994?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516438479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516432902?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516386742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516378375?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7516406927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516393930?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516385420?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516409696?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,bbf249e056315af0a18d5c0834de9adef117a25f
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7516441565?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-26-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,bbf249e056315af0a18d5c0834de9adef117a25f
diff --git a/csv_reports/nightly-packaging-2022-07-27-0.csv b/csv_reports/nightly-packaging-2022-07-27-0.csv
deleted file mode 100644
index 2c289915b94..00000000000
--- a/csv_reports/nightly-packaging-2022-07-27-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536491175?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536510981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536504381?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536494415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536460568?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536486262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536483927?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536472108?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536503213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536518446?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536526205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7536479050?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7536488919?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7536486705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7538961667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7536996319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7537677581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7538290941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7539110212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7538005065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7538632987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7537144740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7538081699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7537138250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7538624088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7537754797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7538882240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7538360083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7539254822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7537137156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7537260219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7537367609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7538740962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7539813595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7538562138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7539735669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7538826664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7538339952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7537420518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7537986911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7540068200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7537824534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7537497748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7538982073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536484853?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536512815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536521820?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536504979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7536450191?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/7536469212?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7536452535?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/runs/7537009720?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7536481102?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7536480971?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-java-jars,github,{},java-jars/github.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7536520489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7536461908?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-python-sdist,github,{},python-sdist/github.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7537986718?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537782332?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537782249?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537782166?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537782056?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537129671?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537129524?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537129384?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537129248?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537129129?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537129023?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537128894?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7537128763?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7536477007?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7536476861?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7536476747?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7536476510?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7536476343?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7536468406?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-r-binary-packages,github,{},r/github.packages.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536509692?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536497229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536490082?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536466066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536457564?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536474078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536463908?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7536463057?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536491887?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536447990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7536493185?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7536502334?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7536481871?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7536524739?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7536458454?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-mavericks-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7536451190?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7536488271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-mavericks-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7536459496?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-macos-mavericks-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7536513129?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536498546?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536478895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536482947?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536516257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536517123?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536469809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536506610?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7536510487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536507749?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536477614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536472828?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7536505918?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-27-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,49ae8fa9536b117f26e83941619df3b0e1b9e18a
diff --git a/csv_reports/nightly-packaging-2022-07-28-0.csv b/csv_reports/nightly-packaging-2022-07-28-0.csv
deleted file mode 100644
index 88375d6f771..00000000000
--- a/csv_reports/nightly-packaging-2022-07-28-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556301381?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556254116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556268243?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556262187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556297598?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556251698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556294795?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556260489?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556298089'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556307070?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556295411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7556259458?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7556294058?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7559437560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7561200685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py310-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/7556317193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7559987093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py310-ppc64le,pending,['https://github.com/ursacomputing/crossbow/runs/7556311277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py37-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7556319758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7560236343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7560861752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py37-cuda,pending,['https://github.com/ursacomputing/crossbow/runs/7556313036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7560750804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7561249086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7560094490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7561354716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7560560585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7560477149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7559476017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7561960866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7560302555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7561694296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7562120031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7562231837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-osx-clang-py310,pending,['https://github.com/ursacomputing/crossbow/runs/7556321891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-osx-clang-py37-r40,pending,['https://github.com/ursacomputing/crossbow/runs/7556291227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-osx-clang-py37-r41,pending,['https://github.com/ursacomputing/crossbow/runs/7556310041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7560155263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7561889146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7561994047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-win-vs2017-py37-r40,pending,['https://github.com/ursacomputing/crossbow/runs/7556309352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7560677156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7561921877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,60a1919527003a55a39785633bdbbbeef412c362
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7561460207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,60a1919527003a55a39785633bdbbbeef412c362
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556271414?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556306340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556248017?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556265395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7556276088?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,60a1919527003a55a39785633bdbbbeef412c362
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7556315152?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,60a1919527003a55a39785633bdbbbeef412c362
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7556255423?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,60a1919527003a55a39785633bdbbbeef412c362
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7556847138?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556283584?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556283480?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-java-jars,github,{},java-jars/github.yml,60a1919527003a55a39785633bdbbbeef412c362
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7556307512?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,60a1919527003a55a39785633bdbbbeef412c362
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7556311493?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-python-sdist,github,{},python-sdist/github.yml,60a1919527003a55a39785633bdbbbeef412c362
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7557723251?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7557343557?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7557343454?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7557343353?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7557343273?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556962855?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556962714?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556962549?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556962389?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556962229?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556962081?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556961914?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556961816?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556312579?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556312417?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556312291?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556312205?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556312113?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7556304847?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-r-binary-packages,github,{},r/github.packages.yml,60a1919527003a55a39785633bdbbbeef412c362
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556281592?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556315226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556241589?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556267477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556313218?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556263080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556278606?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7556302631?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556317538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556314329?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7556303446?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556284196?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556285339?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556280726?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556245660?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556253088?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556318711?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556299559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556243083?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556277451?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556261134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556293513?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556320555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556272107?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556303782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556300597?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7556258271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556279965?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556244350?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556275140?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,60a1919527003a55a39785633bdbbbeef412c362
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7556292674?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-28-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,60a1919527003a55a39785633bdbbbeef412c362
diff --git a/csv_reports/nightly-packaging-2022-07-29-0.csv b/csv_reports/nightly-packaging-2022-07-29-0.csv
deleted file mode 100644
index 4ca0098d86b..00000000000
--- a/csv_reports/nightly-packaging-2022-07-29-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575542848?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575551873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575586264?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575565352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575582878?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575542951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575550066?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7575574756?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575525121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575584923?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575573276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7575537763?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True', 'image': 'conan'}",docker-tests/github.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7575571482?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7576158182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7577634901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7575992617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7577977403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7577449103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7576285077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7577427389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7576627673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7577449359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7576817509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7577875294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7577331507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7577036032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7576072284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7576120739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7576943901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7576025536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7576976467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7577060712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7576315111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7577834145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7576576666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7576835579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7576769419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7576824777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7576838546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7577619469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7577659379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7577989336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7576481927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,7fe71f5ca44518772a44f80652b942dc04133841
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7577572462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,7fe71f5ca44518772a44f80652b942dc04133841
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575570192?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-debian-bookworm-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7575581116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575563647?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575560457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7575554159?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,7fe71f5ca44518772a44f80652b942dc04133841
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7575535879?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,7fe71f5ca44518772a44f80652b942dc04133841
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7575536887?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,7fe71f5ca44518772a44f80652b942dc04133841
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7577385473?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7575538445?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7575538360?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-java-jars,github,{},java-jars/github.yml,7fe71f5ca44518772a44f80652b942dc04133841
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7575523358?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,7fe71f5ca44518772a44f80652b942dc04133841
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7575541414?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-python-sdist,github,{},python-sdist/github.yml,7fe71f5ca44518772a44f80652b942dc04133841
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7576904574?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576595924?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576595789?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576595695?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576595589?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576431523?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576431439?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576431352?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576431261?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576431178?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576431059?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576430968?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7576430856?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7575561949?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7575561818?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7575561707?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7575561592?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7575561418?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7575553814?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-r-binary-packages,github,{},r/github.packages.yml,7fe71f5ca44518772a44f80652b942dc04133841
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575577568?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575536145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575545545?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575547588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575533787?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7575552463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575579882?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7575575566?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575568545?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575540553?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7575580827?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575567000?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575539641?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575533112?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575556442?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575550414?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575534403?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575557515?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575561603?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575544172?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575587573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575576087?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575530493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575526057?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575544604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575570899?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7575585385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575556125?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575578451?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575551229?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,7fe71f5ca44518772a44f80652b942dc04133841
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7575578151?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-29-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,7fe71f5ca44518772a44f80652b942dc04133841
diff --git a/csv_reports/nightly-packaging-2022-07-30-0.csv b/csv_reports/nightly-packaging-2022-07-30-0.csv
deleted file mode 100644
index 63b39577ba6..00000000000
--- a/csv_reports/nightly-packaging-2022-07-30-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590379411?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590378829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590384998?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590376985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590381645?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590364556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590370287?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590384376?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590383001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590361611?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590377892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7590368364?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7590382680?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7590734623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590597363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7591031663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7590714935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7590792054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590769608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7590899898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7590596232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7590576608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7590559684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590952941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7591125293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7590990947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7590548443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590611748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7590554821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7591083772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7590557720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7591143868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7590862949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7590768195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7591146449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7590994253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7591227775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7590726395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7590853373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7591205359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7590875118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7591273385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7591336500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7590915667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7590362669?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7590374280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7590381434?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7590364840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7590380313?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7590363853?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7590383149?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7590511518?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590367102?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590367032?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-java-jars,github,{},java-jars/github.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7590362040?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7590369084?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-python-sdist,github,{},python-sdist/github.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7590808526?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590701565?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590701537?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590701506?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590701487?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590587604?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590587572?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590587540?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590587505?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590587456?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590587414?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590587372?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590587322?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590379549?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590379500?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590379454?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590379425?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590379393?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7590377679?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-r-binary-packages,github,{},r/github.packages.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7590385246?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7590372130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7590383345?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7590373062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7590374693?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7590374024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590378393?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7590365826?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590382176?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590369458?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7590362946?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590370648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590380983?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590376045?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590369201?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590369700?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590364349?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590381197?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590385660?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590370887?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590366405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590361821?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590379092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590382526?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590384651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590383948?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7590378599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590373335?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590367328?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590365164?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7590383804?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-30-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
diff --git a/csv_reports/nightly-packaging-2022-07-31-0.csv b/csv_reports/nightly-packaging-2022-07-31-0.csv
deleted file mode 100644
index 52f21a12f2a..00000000000
--- a/csv_reports/nightly-packaging-2022-07-31-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597314575?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597300991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597299467?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597307581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597296614?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597306240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597298271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597302189?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597312073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597315687?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597308033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7597306486?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7597294102?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7597896902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597570993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7597743842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7597474758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7597515020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597726259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7598004151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7597846818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7597481555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7598089826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597524420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7598070858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7597466516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7597563515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7598116705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7597695894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7597707641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7597505689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7598120586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7597915795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7597979951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7597797757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7597863681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7598285511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7597610041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7597994312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7597609323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7597903426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7598285419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7597889326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7597891592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597296927?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597313598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597299220?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597309741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7597301253?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7597291205?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7597293439?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7597488447?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597313986?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597313961?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-java-jars,github,{},java-jars/github.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7597304933?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7597308701?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-python-sdist,github,{},python-sdist/github.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7597761782?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597658489?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597658451?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597658405?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597658350?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597642866?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597642820?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597642772?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597642736?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597642687?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597642661?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597642632?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597642597?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597318479?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597318458?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597318428?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597318399?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597318343?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7597316187?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-r-binary-packages,github,{},r/github.packages.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597301636?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597297903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597313070?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597292761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597306077?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597313745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597303016?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7597314271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597303345?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597305428?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7597312620?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597314769?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597303917?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597294445?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597315935?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597292297?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597305752?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597316642?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597303549?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597308370?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597300221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597292091?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597309485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597299964?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597291543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597296067?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7597310985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597293220?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597313356?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597301946?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7597292585?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-07-31-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,02c8598d264c839a5b5cf3109bfd406f3b8a6ba5
diff --git a/csv_reports/nightly-packaging-2022-08-01-0.csv b/csv_reports/nightly-packaging-2022-08-01-0.csv
deleted file mode 100644
index 7d18a7b7c83..00000000000
--- a/csv_reports/nightly-packaging-2022-08-01-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607563918?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607522002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607511637?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607509517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607503733?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607564790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607517485?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607558397?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607533441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607509319?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607489680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7607488417?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7607559802?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7607520517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7609287914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7608069049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7609487301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7609337368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7608178416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7609345107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7608147479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7608858297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7608122062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7609350231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7608739097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7608824816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7608305829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7609237010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7608143151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7609821641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7608978901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7609624685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7610109317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7608761194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7610370374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7609464936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7608709772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7608624067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7610400700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7608426637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7608808921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7610075322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7608393402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7609908675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607514467?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607563931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607541421?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607520716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7607537913?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7607539906?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7607523132?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7608221626?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7607549443?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7607549265?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-java-jars,github,{},java-jars/github.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7607518039?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7607568789?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-python-sdist,github,{},python-sdist/github.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7609097691?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608709336?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608709203?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608709077?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608708914?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608223252?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608223126?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608223038?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608222901?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608222798?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608222683?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608222569?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7608222436?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7607548774?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7607548664?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7607548526?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7607548365?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7607548103?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7607540624?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-r-binary-packages,github,{},r/github.packages.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607513522?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607569506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607498430?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607550016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607531627?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607535459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607557024?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7607527006?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607545609?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607544553?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7607537143?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607527691?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607520050?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607557823?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607495690?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607548829?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607510964?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607562559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607518928?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607501879?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607568328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607496429?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607528935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607505536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607561102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607543589?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7607506359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607565930?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607493994?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607489176?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7607529629?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,42a9b32141c3c5a7178bef6644872d14f3051ce6
diff --git a/csv_reports/nightly-packaging-2022-08-02-0.csv b/csv_reports/nightly-packaging-2022-08-02-0.csv
deleted file mode 100644
index 8e63334a2cb..00000000000
--- a/csv_reports/nightly-packaging-2022-08-02-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627692800?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627716188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627642655?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627637728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627672369?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627700482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627650441?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627715894?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627679116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627637258?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627655951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7627659067?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7627674947?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7629691776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7628995926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7628283844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7628199194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7629656948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7629832511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7628942688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7629467399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7629941244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7630022529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7629448647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7629752805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7629460757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7628950055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7629709443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7628224936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7628333637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7628329023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7630418489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7628684180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7629265897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7629884074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7630374271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7629209939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7629262208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7630748870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7628862637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7630784217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7629118761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7628801486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7630166492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627682467?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627695484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627673917?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627668889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7627701669?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7627676786?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7627710832?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7628427054?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7627712953?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7627712845?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-java-jars,github,{},java-jars/github.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7627691026?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7627649646?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-python-sdist,github,{},python-sdist/github.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7629699137?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7629270807?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7629270435?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7629270235?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7629270093?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7628776360?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7628776230?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7628776109?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7628775997?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7628775897?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7628775762?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7628775629?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7628775451?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7627707846?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7627707649?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7627707516?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7627707393?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7627707181?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7627700214?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-r-binary-packages,github,{},r/github.packages.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627711437?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627644057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627665634?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627669245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627659423?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627703913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627702586?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7627681631?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627697678?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627657160?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7627710114?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627670736?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627695049?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627662020?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627660405?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627684755?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627676018?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627713512?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627677161?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627655648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627708397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627645794?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627691601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627686987?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627646141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627640974?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7627704610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627694032?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627663968?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627683296?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,48e27804296233a9ab90b6096e291046ff2db6f3
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7627668269?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-02-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,48e27804296233a9ab90b6096e291046ff2db6f3
diff --git a/csv_reports/nightly-packaging-2022-08-03-0.csv b/csv_reports/nightly-packaging-2022-08-03-0.csv
deleted file mode 100644
index 20bba5e21d4..00000000000
--- a/csv_reports/nightly-packaging-2022-08-03-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648064210?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648081656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648107297?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648035096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648038559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648072163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648098733?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648089534?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648110772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648114774?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648059928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7648083856?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7648106432?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7649108410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648943743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7649487710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7649304090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7650479334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648767562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7650565447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7650898389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7648814930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7648860011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7650580938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7649560840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7650084236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7649679264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648985191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7650640114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7648595841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7650069064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7649981668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7650795441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7649031999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7649011786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7650250702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7650632485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7649126446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7649967254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7649070691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7651180710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7649999332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7649899478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7649996130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648035849?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648058658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648115679?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648080883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7648102016?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-homebrew-r-autobrew,failure,['https://github.com/ursacomputing/crossbow/runs/7648111921?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7648039246?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7648738645?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648056385?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648056197?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-java-jars,github,{},java-jars/github.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7648103261?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7648048083?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-python-sdist,github,{},python-sdist/github.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7649414122?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7649264624?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7649264501?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7649264395?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7649264183?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648888531?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648888417?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648888325?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648888211?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648888120?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648888008?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648887898?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648887789?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648080393?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648080268?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648080124?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648079912?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648079718?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7648071160?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-r-binary-packages,github,{},r/github.packages.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648095404?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648112009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648058604?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648049871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648083061?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648091797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648097548?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7648065465?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648086241?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648037256?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7648094359?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7648055376?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7648030695?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7648052127?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7648063053?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-mavericks-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7648040545?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7648101350?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-mavericks-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7648105745?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-macos-mavericks-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7648049319?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648043325?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648073188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648075835?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648080030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648066027?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648100185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648072080?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7648087047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648044658?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648032115?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7648034366?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7648108372?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-03-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,8cac69c809e2ae9d4ba9c10c7b22869c1fd11323
diff --git a/csv_reports/nightly-packaging-2022-08-04-0.csv b/csv_reports/nightly-packaging-2022-08-04-0.csv
deleted file mode 100644
index 26b88c1e0fb..00000000000
--- a/csv_reports/nightly-packaging-2022-08-04-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668356976?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668400834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668416494?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668391277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668372993?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668377140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668378347?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668411933?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668362554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668417708?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668388596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7668425576?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7668402181?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7669358724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7669871193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7669011193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7670453202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7669154597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7671007355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7669030768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7670531924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7670445019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7670129381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7669091283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7670199120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7670592813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7670829567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7670103311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7669534665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7669911162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7670763689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7669946610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7670203563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7670891595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7669601337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7671586010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7669811280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/7669395761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7669428722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7669327986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7670423618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7671294953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7669967538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7669322664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668410122?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668423774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668371216?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668356239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7668397926?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7668357807?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7668429393?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7669483079?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7668355501?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7668355283?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-java-jars,github,{},java-jars/github.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7668375721?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7668385470?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-python-sdist,github,{},python-sdist/github.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/7670143554?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669708044?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669707902?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669707772?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669707626?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669134077?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669133932?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669133824?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669133721?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669133564?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669133448?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669133344?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7669133231?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7668367359?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7668367184?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7668367000?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7668366895?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7668366800?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7668360266?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-r-binary-packages,github,{},r/github.packages.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668363535?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668355183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668379766?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668372040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668430352?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668401651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668404398?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7668365924?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668403402?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668368570?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7668424622?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668418663?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668415590?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668380459?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668407887?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668393472?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668367858?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668366747?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668421450?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668410983?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668376355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668396011?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668358840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668370702?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668426200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668386749?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7668420224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668374168?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668389150?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668399936?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7668406048?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-04-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,669009edfc4f7f1fe85a1de641e16f831eee45d6
diff --git a/csv_reports/nightly-packaging-2022-08-05-0.csv b/csv_reports/nightly-packaging-2022-08-05-0.csv
deleted file mode 100644
index e5dbef6f3a7..00000000000
--- a/csv_reports/nightly-packaging-2022-08-05-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687989233?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687993378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687951576?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687985400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687955420?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687945304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687982739?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687975348?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687970683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687987579?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687984107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7687979648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7687997808?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7689547604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7689618375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7689011321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7688590850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7688524190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7688726314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7689180108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7688525007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7690197744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7690101892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7688539570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7689576866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7689303931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7689109636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7689965160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7689702917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7688510224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7688629026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7690407892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7689569995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7688782479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7688783009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7690334067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7690668993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7689986827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7689348295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7689522046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7689111772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7689845270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7689685939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7690378149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687992180?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687940240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687950697?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687985749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7687959957?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7687976091?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7687970339?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7688641520?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7687974516?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7687974383?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-java-jars,github,{},java-jars/github.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-nuget,failure,['https://github.com/ursacomputing/crossbow/runs/7687943050?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7687991109?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-python-sdist,github,{},python-sdist/github.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7689322437?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688958576?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688958476?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688958358?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688958240?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688576154?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688575973?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688575829?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688575612?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688575449?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688575304?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688575115?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7688574905?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7687979848?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7687979754?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7687979651?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7687979517?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7687979353?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7687971950?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-r-binary-packages,github,{},r/github.packages.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687968026?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687947792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687948721?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687959034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687980945?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687963346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687963288?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7687953175?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687983988?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687945228?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7687935823?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687952355?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687947102?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687937579?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687996800?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687961322?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687954691?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687936731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687957173?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687973534?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687994067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7688001377?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687953490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687943862?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7688003994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687940193?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7687937982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687983206?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687977629?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687939058?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7687988230?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-05-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,6a3fb97a9a5ebd0316af050fec5cb4157d35f296
diff --git a/csv_reports/nightly-packaging-2022-08-06-0.csv b/csv_reports/nightly-packaging-2022-08-06-0.csv
deleted file mode 100644
index c2a62f46b85..00000000000
--- a/csv_reports/nightly-packaging-2022-08-06-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703578902?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703575853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703595496?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703583550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703584558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703577189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703595231?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703581241?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703577292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703574597?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703586733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7703589235?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7703588980?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7703587965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703810682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7703998328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7704001265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7704219574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7704249070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7704389115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7704303451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7703968122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7703785215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703836219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7703804122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7704044387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7703836394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703831080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7703802361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7704383062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7704211874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7704017534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7703800332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7704060293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7704297455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7704434068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7704191495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7704340163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7704180120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7704098474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7704207390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7704555230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7703870438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7703873368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703575588?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703586124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703582358?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703580730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7703573662?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7703578328?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7703580024?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7703813111?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703596017?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703595952?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-java-jars,github,{},java-jars/github.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7703590216?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7703573488?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-python-sdist,github,{},python-sdist/github.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7704118135?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703996566?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703996538?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703996507?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703996472?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703911633?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703911620?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703911602?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703911580?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703911562?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703911533?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703911518?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703911497?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703583706?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703583659?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703583605?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703583519?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703583438?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7703580292?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-r-binary-packages,github,{},r/github.packages.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703591106?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703594171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703587054?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703592433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703593813?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703574874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703590011?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/7703586490?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703583394?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703572905?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7703573146?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703579594?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703585409?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703587572?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703574677?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703588515?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703589783?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703582708?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703584002?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703590903?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703593101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703593411?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703585155'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703586249?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703581691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703594976?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7703594401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703588186?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703575306?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703582526?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7703595841?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-06-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d26489c3c8421d389ae46e22c7add097c33c45bb
diff --git a/csv_reports/nightly-packaging-2022-08-07-0.csv b/csv_reports/nightly-packaging-2022-08-07-0.csv
deleted file mode 100644
index db88e44e39a..00000000000
--- a/csv_reports/nightly-packaging-2022-08-07-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711086742?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711088805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711088542?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711087797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711077194?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711089451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711082009?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711099948?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711096948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711100139?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711093933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7711095008?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7711093479?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7711091092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711571050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7711526889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7711318123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7711376043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711800344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7711315885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7711733382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7711523417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7711706830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711318509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7712053733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7711851729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7711317801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711762550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7711839229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7711960636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7711327281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7711963745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7711346111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7711332238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7712156501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7711395288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7711809280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7711431168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7711802438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7711673627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7711999142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7711833314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7711654554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7712104266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711081000?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711081596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711082979?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711102772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7711087518?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7711083306?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7711101145?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7711302423?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711091296?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711091213?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-java-jars,github,{},java-jars/github.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7711096372?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7711100491?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-python-sdist,github,{},python-sdist/github.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7711691764?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711567936?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711567860?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711567792?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711567742?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711354433?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711354406?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711354382?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711354357?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711354341?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711354311?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711354276?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711354222?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711099165?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711099124?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711099079?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711099041?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711098981?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7711096107?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-r-binary-packages,github,{},r/github.packages.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711090653?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711088209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711080123?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711103941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711084095?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711104330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711100839?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7711086139?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711092279?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711102617?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7711099263?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711078095?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711078407?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711095738?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711092828?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711077789?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711082553?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711092559?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711085889?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711079511?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711090880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7711094623?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711084656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711103459?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711101440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711089899?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7711101749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711085244?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711082295?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711099212?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7711085551?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-07-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,0ffcc5939ed9fc0a4ca23492d68d2df0661f2bf9
diff --git a/csv_reports/nightly-packaging-2022-08-08-0.csv b/csv_reports/nightly-packaging-2022-08-08-0.csv
deleted file mode 100644
index b697957338b..00000000000
--- a/csv_reports/nightly-packaging-2022-08-08-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721805768?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721768680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721773148?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7721812121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721785069?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721791028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721793250?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721780324?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721763292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721812790?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721824481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7721769904?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7721765868?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7723140251'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7723513038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7724175432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7722335967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7723640905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7723958980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7723008417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7724278483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7722380283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7723608499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7723845305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7722933940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7722356286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7724439580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7722597127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7723102828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7722391290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7724175021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7723641827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7724274522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7722722598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7722921326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7723672656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7723098079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7724135995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7723641333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7724603761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7723502289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7725129700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7722961675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7724900079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721817683?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721781818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721767993?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721775513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7721805113?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7721802585?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7721789996?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7722469820?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7721787726?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7721787571?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-java-jars,github,{},java-jars/github.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7721764668?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7721788630?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-python-sdist,github,{},python-sdist/github.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7723226003?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722872365?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722872222?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722872110?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722871965?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722544176?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722544038?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722543915?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722543807?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722543684?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722543574?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722543487?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7722543368?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7721824480?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7721824337?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7721824235?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7721824126?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7721823885?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7721813806?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-r-binary-packages,github,{},r/github.packages.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721799941?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721785645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721771532?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721833915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721809178?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721776827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721781234?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7721815398?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721798628?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721807793?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7721777743?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721772337?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721820731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721810059?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721818060?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721828990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721828550?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721836074?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721829840?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721826560?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721786903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721820144?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721801325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721811101?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721831239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721810428?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7721818842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721797232?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721782953?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721783865?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7721779588?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-08-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,a9a8626e8342e1145ec1b60ffb50154693b9ef92
diff --git a/csv_reports/nightly-packaging-2022-08-09-0.csv b/csv_reports/nightly-packaging-2022-08-09-0.csv
deleted file mode 100644
index de8c1282870..00000000000
--- a/csv_reports/nightly-packaging-2022-08-09-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742190290?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742217844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742145778?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742206818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742171579?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742170292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742199213?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742188911?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742191220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742163459?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742216059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7742148623?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7742194907?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7743902748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7747328236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7745640901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7745756653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7746442221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7746408487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7744640940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7745213336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7745476685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7744930647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7745396039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7747247466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7746027079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7745391533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7744779698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7746050247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7746660628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7744482695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7747595630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7745519047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7746778496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7748143408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7746804896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7746612199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7745021929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7746621640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7747275016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7747926728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7745985185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7745524120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7746456292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742197259?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742193544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742215796?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742197863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7742206167?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7742162030?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7742147791?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7742904434?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742180763?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742180557?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-java-jars,github,{},java-jars/github.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7742157070?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7742214318?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-python-sdist,github,{},python-sdist/github.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7743591254?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7743252673?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7743252526?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7743252410?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7743252273?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742884830?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742884630?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742884513?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742884417?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742884300?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742884188?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742884085?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742883966?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742193491?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742193282?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742193165?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742193066?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742192883?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7742183917?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-r-binary-packages,github,{},r/github.packages.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742152858?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742175978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742199956?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742173940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742185092?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742164361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742144128?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7742164179?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742146367?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742185907?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7742158735?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742160484?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742161005?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742151990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742157595?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742153117?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742193562?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742217713?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742156049?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742159796?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742153754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742155353?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742167448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742195523?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742181015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742204981?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7742212469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742143406?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742172290?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742165879?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7742219620?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-09-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,709f8f336a704f5ac907d7cbf285600fdaf70014
diff --git a/csv_reports/nightly-packaging-2022-08-10-0.csv b/csv_reports/nightly-packaging-2022-08-10-0.csv
deleted file mode 100644
index 7ee700c0c66..00000000000
--- a/csv_reports/nightly-packaging-2022-08-10-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762804412?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762778523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762771507?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762848527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762799953?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762816320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762783249?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762800620?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762808655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762838205?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762811829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/runs/7762831419?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7762834916?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7763518620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7765150401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7763916290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7764501641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7764364331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7763516291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7763484279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7765129484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7763435544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7763407190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7763651242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7765249532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7764291719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7764887000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7764999470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7763939893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7763351209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7765257611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7763613789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7764318836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7763703171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7765496822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7765647926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7765093250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7764669014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7764039609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7764499939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7765566916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7764766883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7764247926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,838687178fda7f82e31668f502e2f94071ce8077
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7765821462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,838687178fda7f82e31668f502e2f94071ce8077
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762820444?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762780948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762779282?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7762776679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/7762821665?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,838687178fda7f82e31668f502e2f94071ce8077
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7762836295?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,838687178fda7f82e31668f502e2f94071ce8077
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7762814022?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,838687178fda7f82e31668f502e2f94071ce8077
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7763508536?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7762842409?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7762842191?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-java-jars,github,{},java-jars/github.yml,838687178fda7f82e31668f502e2f94071ce8077
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7762826565?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,838687178fda7f82e31668f502e2f94071ce8077
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7762796091?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-python-sdist,github,{},python-sdist/github.yml,838687178fda7f82e31668f502e2f94071ce8077
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7764365412?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763944208?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763944098?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763943997?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763943887?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763570864?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763570718?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763570609?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763570481?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763570323?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763569430?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763569168?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7763569000?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7762837297?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7762837116?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7762836962?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7762836716?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7762836451?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7762825324?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-r-binary-packages,github,{},r/github.packages.yml,838687178fda7f82e31668f502e2f94071ce8077
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762829295?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762828275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762847873?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762768536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762774857?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762770422'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762773707?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7762794999?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762789755?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762784783?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7762827666?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762830069?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762786268?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762813290?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762832708?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762788243?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762811729?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762817255?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762841355?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762781767?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762815330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762845568?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762807024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762777333?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762818085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762787756?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7762823131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762783750?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762798469?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762831940?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,838687178fda7f82e31668f502e2f94071ce8077
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7762803206?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-10-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,838687178fda7f82e31668f502e2f94071ce8077
diff --git a/csv_reports/nightly-packaging-2022-08-11-0.csv b/csv_reports/nightly-packaging-2022-08-11-0.csv
deleted file mode 100644
index 929d96aff45..00000000000
--- a/csv_reports/nightly-packaging-2022-08-11-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783213362?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783185038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783217077?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783246906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783235330?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783176210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783204406?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783187113?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783175521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783208486?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783249227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/runs/7783226405?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7783207637?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7784569868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7785763783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7783757815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7785641863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7784743501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7785263881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7783828439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7785272955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7784534962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7784893748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7785416206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7785373067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7783709975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7783824163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783884742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7783904770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7783817963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7785166240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7784598410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7784633167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7785429695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7784661862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7785977077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7785135696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7784122807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7784871746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7785926941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7784945961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7784485420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7784210677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7785368405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783220016?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783242213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783182946?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783209702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7783182398?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7783235818?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/7783231235?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7783887677?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783229016?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783228816?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-java-jars,github,{},java-jars/github.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7783220522?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7783221240?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-python-sdist,github,{},python-sdist/github.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7784927463?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7784583384?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7784583265?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7784583100?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7784582922?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783855997?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783855859?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783855773?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783855658?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783855526?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783855437?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783855326?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783855183?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783208871?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783208762?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783208675?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783208515?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783208321?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7783199654?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-r-binary-packages,github,{},r/github.packages.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783192697?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783194534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783243894?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783214593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783206017?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783188655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783211764?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7783248331?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783198769?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783180808?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7783242028?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783192027?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7783215892?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7783189819?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7783177429?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-mavericks-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7783225359?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7783183740?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783222079?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-macos-mavericks-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7783205017?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783185970?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783217587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783218742?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783240609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783216481?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783202914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783223434?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7783174754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783190807?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783189187?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783179504?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7783211455?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-11-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b7c94e2f330b628ac3d3c92972ad691c0ec454d4
diff --git a/csv_reports/nightly-packaging-2022-08-12-0.csv b/csv_reports/nightly-packaging-2022-08-12-0.csv
deleted file mode 100644
index f8ac23feb4d..00000000000
--- a/csv_reports/nightly-packaging-2022-08-12-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802821458?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802830665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802814214?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802780176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802778080?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802836056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802832352?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802797320?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802809755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802776550?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802794065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/runs/7802820173?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7802793577?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7804729862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7803838609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7804233902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7804326032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7805053060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7805240388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7804707347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7803382363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7803279292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7804521828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7803452970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7803934478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7804769069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7803462028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7803918948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7803301514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7803908872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7803384745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7803502896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7804582811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7804111919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7804981569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7803902102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7804697678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7804344005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7804920079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7803675010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7804990650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7804150364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7805070647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7805044148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802830113?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802804526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802839302?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802776069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7802834720?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7802787716?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7802816660?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7803433024?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7802825842?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7802825638?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-java-jars,github,{},java-jars/github.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7802803931?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7802838050?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-python-sdist,github,{},python-sdist/github.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7804578456?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7804200716?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7804200612?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7804200512?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7804200422?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7803453040?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7803452944?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7803452852?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7803452717?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7803452614?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7803452513?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7803452434?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7803452340?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7802848102?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7802847940?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7802847835?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7802847714?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7802847505?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7802839955?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-r-binary-packages,github,{},r/github.packages.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802800333?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802843494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802844808?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802783151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802791036?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802806039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802785701?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7802824287?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802811937?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802815985?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7802792801?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802789513?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802835418?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802790391?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802826434?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802794937?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802820845?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802796616?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802806978?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802786431?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802810201'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802841458?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802837101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802818483?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802818855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802796153?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7802812132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802833238?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802780075?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802799534?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7802828896?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-12-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,a70908dc3cada0b3a7bc1fd06f7fa6982b4b1160
diff --git a/csv_reports/nightly-packaging-2022-08-13-0.csv b/csv_reports/nightly-packaging-2022-08-13-0.csv
deleted file mode 100644
index e545b099971..00000000000
--- a/csv_reports/nightly-packaging-2022-08-13-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818108865?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818103930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818114571?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818102589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818093563?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818110921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818113893?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818096819?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818105674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818115630?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818104206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/runs/7818112476?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7818109615?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7818311867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818350222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7818683919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7818541560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7818284813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818719107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7818319734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7818335308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7818500674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7818821612'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818726808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7818632243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7818260927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7818544597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818737090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7818467148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7818489947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7818333688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7818300949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7818322074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7818493818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7818595140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7818450604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7818486955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7818969939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/7818879637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7818754191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7818736191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7818836344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7818917204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7818796513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818098016?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818106064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818114845?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818111322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7818096451?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7818096273?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7818107603?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7818279229?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818097149?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818097109?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-java-jars,github,{},java-jars/github.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7818107748?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7818111935?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-python-sdist,github,{},python-sdist/github.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7818534312?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818432845?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818432817?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818432788?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818432763?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818319085?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818319052?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818319017?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818318989?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818318954?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818318903?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818318871?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818318841?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818110417?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818110382?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818110351?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818110248?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818110165?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7818107215?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-r-binary-packages,github,{},r/github.packages.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818104829?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818112132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818099172?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818101952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818108046?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818112632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818106834?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7818102937?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818103284?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818113023?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7818097718?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818109124?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818100281?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818094907?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818099656?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818109998?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818104584?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818105535?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818094385?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818103454?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818110453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818099513?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818101207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818105207?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818095386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818106325?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7818103611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818094062?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818113296?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818101492?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7818110474?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-13-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
diff --git a/csv_reports/nightly-packaging-2022-08-14-0.csv b/csv_reports/nightly-packaging-2022-08-14-0.csv
deleted file mode 100644
index 7c7f4c2418e..00000000000
--- a/csv_reports/nightly-packaging-2022-08-14-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825182025?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825195555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825200112?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825198160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825197186?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825183038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825182587?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825181388?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825183222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825194164?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825179439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/runs/7825188130?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7825183947?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7825799046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825680787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7825788589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7825697900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7825879602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825403621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7825664923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7825467151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7825691517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7825440838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825607151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7825896717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7826022370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7825384371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825485673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7825846485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7826000470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7825899050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7825825791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7825692771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7825461507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7825484809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7825811402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7826031334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7826101052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7825472467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7826192959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7825586374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7825866962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7825811025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7825508320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825193209?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825185709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825199622?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825193620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7825192155?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7825178131?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7825178499?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7825357637?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825196823?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825196798?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-java-jars,github,{},java-jars/github.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7825202992?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7825187978?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-python-sdist,github,{},python-sdist/github.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7825734910?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825618388?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825618369?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825618352?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825618327?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825411092?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825411059?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825411024?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825410986?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825410948?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825410905?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825410850?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825410799?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825190336?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825190279?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825190220?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825190151?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825190075?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7825187289?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-r-binary-packages,github,{},r/github.packages.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825179250?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825178303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825196563?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825178641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825195493?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825188291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7825181043?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7825198646?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825190429?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825194738?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7825189155?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825202105?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825184161?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825184930?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825191096?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825196212?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825185646?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825192618?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825188851?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825197499?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825189429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825185308?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825185934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825186524?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825193808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825187572?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7825200507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825182852?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825203494?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825180377?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7825191490?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,2575ad414606aa91ed0f6c66435b8df8c4070cfa
diff --git a/csv_reports/nightly-packaging-2022-08-15-0.csv b/csv_reports/nightly-packaging-2022-08-15-0.csv
deleted file mode 100644
index b27a99432eb..00000000000
--- a/csv_reports/nightly-packaging-2022-08-15-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7834721387?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7834736704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7834745908?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7834703577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834699983?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7834707965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834751938?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7834714225?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7834756187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7834747031?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7834727200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7834737584?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7834711726?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7835378946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7836183792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7835814337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7835642038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7836716749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7836976686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7835372727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7837149818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7835594540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7836148187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7835651066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7836734105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7836629963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7836451175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7837088748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7836924538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7835835113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7836122982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7835720144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7835630704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7835349528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7836954747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7836272096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7837594706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7837357830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7836542923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7836512309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7837045820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7836508638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7836567723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7836059938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7834750656?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7834746421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7834744542?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7834709298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7834729656?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7834714741?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7834757984?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7835234777?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7834701649?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7834701439?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-java-jars,github,{},java-jars/github.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7834754025?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7834734647?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-python-sdist,github,{},python-sdist/github.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7836121841?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835768074?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835767992?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835767885?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835767786?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835468762?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835468670?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835468555?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835468466?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835468343?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835468205?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835468107?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7835467987?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7834759603?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7834759520?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7834759435?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7834759340?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7834759120?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7834753247?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-r-binary-packages,github,{},r/github.packages.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7834710863?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7834702444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7834706962?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7834722852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7834741274?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7834744637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7834698960?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7834751320?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7834738194?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7834730621?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7834728046?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834715440?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834722458?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834757391?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834739701?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834731558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834752828?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834748532?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834703250?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834705359?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7834725752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834717949?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7834720962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834708576?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7834725133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834704521?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7834755634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834733399?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7834749705?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834749036?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7834742322?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-15-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,bc1a16cd0eceeffe67893a7e8000d2dd28dcf3f1
diff --git a/csv_reports/nightly-packaging-2022-08-16-0.csv b/csv_reports/nightly-packaging-2022-08-16-0.csv
deleted file mode 100644
index b2bb8127979..00000000000
--- a/csv_reports/nightly-packaging-2022-08-16-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7853861313?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7853914091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7853907474?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7853868745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853916225?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7853866963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853923364?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7853940616?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7853901338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7853886767?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7853920456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7853936617?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7853908692?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7855786228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7854768424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7854615944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7854415453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7855972696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7855704875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7855554447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7854767550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7855315398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7855351587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7856487887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7855136737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7854605204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7854562022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7856442571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7855833083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7856310005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7854574975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7855509943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/7854512943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7854797372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7855827748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7856247481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7855279358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7855368567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7856821428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7856569584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7856697595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7856765104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7856753892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,01358f117a5d57388df51db482f2a72033a8efc4
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7855749079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,01358f117a5d57388df51db482f2a72033a8efc4
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7853930595?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7853919644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7853927912?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7853872132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7853927192?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,01358f117a5d57388df51db482f2a72033a8efc4
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7853876337?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,01358f117a5d57388df51db482f2a72033a8efc4
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7853921536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,01358f117a5d57388df51db482f2a72033a8efc4
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7854518086?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7853922977?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7853922755?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-java-jars,github,{},java-jars/github.yml,01358f117a5d57388df51db482f2a72033a8efc4
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7853865364?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,01358f117a5d57388df51db482f2a72033a8efc4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7853909888?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-python-sdist,github,{},python-sdist/github.yml,01358f117a5d57388df51db482f2a72033a8efc4
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7855560450?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7855196649?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7855196515?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7855196358?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7855196248?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7854629120?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7854628985?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7854628778?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7854628634?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7854628502?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7854628373?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7854628254?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7854628067?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7853910632?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7853910471?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7853910334?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7853910202?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7853909908?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7853900992?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-r-binary-packages,github,{},r/github.packages.yml,01358f117a5d57388df51db482f2a72033a8efc4
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7853870226?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7853939436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7853874740?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7853897126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7853873984?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7853899676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7853881980?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7853903174?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7853914348?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7853905691?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7853876906?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853917205?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853925185?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853929993?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853882620?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853933647?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-mavericks-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7853877922?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853931562?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853926195?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853893708?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7853923896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853915710?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7853856082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853879400?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7853942983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853895795?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7853903848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853937930?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853857858?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853898581?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,01358f117a5d57388df51db482f2a72033a8efc4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7853889588?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,01358f117a5d57388df51db482f2a72033a8efc4
diff --git a/csv_reports/nightly-packaging-2022-08-17-0.csv b/csv_reports/nightly-packaging-2022-08-17-0.csv
deleted file mode 100644
index 68d25d8666e..00000000000
--- a/csv_reports/nightly-packaging-2022-08-17-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874752490?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874708189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874734871?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874698065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874774271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874736491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-centos-7-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7874765957?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874725217?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874730147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874728632?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874744769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/runs/7874770870?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7874705569?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7874736108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7875615340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/7875381645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/7876949793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/7876001527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7877346694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7876463601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7876670699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/7876022961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/7875551749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7877101573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/7875375434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/7877106985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/7877357918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7876682094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/7876414727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/7877091164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/7875376293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7876399001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7876447257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7875638896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/7875816751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7877597834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7876565004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/7877648694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/7875776538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/7876882031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7876569642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7876631383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/7875846756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/7875601754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874700902?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874774789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874691993?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874711429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7874743507?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-homebrew-r-autobrew,success,['https://github.com/ursacomputing/crossbow/runs/7874744497?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7874692962?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7875238473?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7874746130?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7874745972?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-java-jars,github,{},java-jars/github.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7874760546?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7874740889?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-python-sdist,github,{},python-sdist/github.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7876407648?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7876032655?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7876032503?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7876032339?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7876032185?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7875407643?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7875407506?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7875407401?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7875407266?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7875407135?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7875407025?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7875406858?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7875406683?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7874728626?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7874728481?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7874728321?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7874728063?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7874727858?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7874719818?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-r-binary-packages,github,{},r/github.packages.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874739541?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874722453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874693896?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874724036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874764629?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7874716698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874749172?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7874751689?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7874756165?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874741796?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7874755378?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874714008?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874760926?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874717896?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874767899?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874773869?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874715884?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874702137?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874747105?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7874713187?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874761591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874739834?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874725507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874697964?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874707276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874770286?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7874703711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874750107?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874748021?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874720813?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7874722043?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-17-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,9d1bbaff55e9a25ab8d04f0b70cd4c820a01bea8
diff --git a/csv_reports/nightly-packaging-2022-08-19-0.csv b/csv_reports/nightly-packaging-2022-08-19-0.csv
deleted file mode 100644
index 2f584b83fdd..00000000000
--- a/csv_reports/nightly-packaging-2022-08-19-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914671440?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914698869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914693579?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914704825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914711874?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914678271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914708324?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914667883?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914668721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914663558?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914655492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7914715326?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7914714385?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7915264028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7916549072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7916043380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7915242635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7915456143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7915780355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7915858324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7916193657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7915181625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7916566863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7915251341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7916656735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7916087998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7915378288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7915923677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7915346795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7916761983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7915232648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7916651868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/7915922791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7915461725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7916297085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7917025848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7915877869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7916736483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7916435144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7917083466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7917583318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7917004546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7915524600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7917335223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914696695?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914706607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914690516?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914657412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7914675145?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/7914648299?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914648195?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914648066?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914647945?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7914689333?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7915302740?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914658846?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914658649?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-java-jars,github,{},java-jars/github.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7914661472?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7914665032?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-python-sdist,github,{},python-sdist/github.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7916108374?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915673201?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915673060?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915672952?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915672828?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915425722?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915425612?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915425518?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915425428?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915425328?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915425198?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915425055?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7915424933?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914661247?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914661098?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914660989?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914660862?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914660724?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7914650955?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-r-binary-packages,github,{},r/github.packages.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914698433?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914692322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914715970?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914649142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914674724?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914689484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914702079?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7914697505?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914672458?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914707482?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7914652759?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914687662?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914673390?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914703130?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914666040?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914683023?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914684790?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914681696?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914684080?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914720123?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914704736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914694454?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914699854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914677490?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914712421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914679118?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7914653632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914710934?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914717900?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914709205?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7914648773?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,1a34a078b29c3f119c93de10631d26fc0d52739a
diff --git a/csv_reports/nightly-packaging-2022-08-20-0.csv b/csv_reports/nightly-packaging-2022-08-20-0.csv
deleted file mode 100644
index 281ff0dabac..00000000000
--- a/csv_reports/nightly-packaging-2022-08-20-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930435389?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930418401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930428670?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930424514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930403928?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930409972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930410663?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930395735?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930423331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930401816?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930414320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7930440046?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7930426235?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7930654307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930929831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7930623598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7930813125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7931194627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930674084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7930861529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7931139204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7930810165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7930611037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930656510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7931067350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7930949481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7931077857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930966175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7931085692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7931004621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7930864536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7930813184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7930635576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7930643144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7931214254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7931391353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7930741347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/7931060061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7931163939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7930691838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7931048979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7930746302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7930725175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7931104141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930446413?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930408188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930400014?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930411913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7930399161?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/7930425336?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930425309?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930425291?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930425264?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7930439495?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7930553671?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930391357?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930391327?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-java-jars,github,{},java-jars/github.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7930419150?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7930413781?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-python-sdist,github,{},python-sdist/github.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7930994886?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930866265?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930866229?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930866199?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930866155?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930660900?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930660842?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930660797?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930660745?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930660704?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930660663?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930660619?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930660583?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930435604?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930435549?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930435484?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930435443?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930435414?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7930433102?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930395542?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930415013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930411277?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930442963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930429325?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930421093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930397965?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7930436142?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930427977?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930442023?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7930444815?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930415611?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930408632?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930419841?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930392574?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930422454?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930403388?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930404634?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930412487?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930424001?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930393152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930406258?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930438943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930409448?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930438446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930420595?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7930398592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930432269?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930405742?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930426945?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7930436788?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,94fc25757864977ddfd3e47b1ef63c020df343ec
diff --git a/csv_reports/nightly-packaging-2022-08-21-0.csv b/csv_reports/nightly-packaging-2022-08-21-0.csv
deleted file mode 100644
index f4912e1cf4b..00000000000
--- a/csv_reports/nightly-packaging-2022-08-21-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937554936?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937562559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937546918?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937559929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937553403?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937570977'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937571781?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937600881?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937555998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937603207?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937550942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7937547719?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7937561536?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7937565217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7938371620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7938283979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7937777634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7937987754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937849551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7938339145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7938086317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7938338935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7938129672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7938291010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7937775273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7938262875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7938494135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7938101468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7938098191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7938424473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7937838891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7938080140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7938446253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7938154947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/7938213162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7937928323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7937928725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7938191666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7937890567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7937928078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7938096517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7938456606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7937915916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7938422187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937584119?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937597263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937566457?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937595962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7937586584?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/7937577691?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937577663?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937577640?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937577624?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7937565375?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7937774962?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937593215?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937593173?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-java-jars,github,{},java-jars/github.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7937599298?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7937564801?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-python-sdist,github,{},python-sdist/github.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7938045809?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937932659?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937932600?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937932540?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937932482?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937840470?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937840416?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937840389?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937840345?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937840323?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937840297?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937840268?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937840239?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937583857?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937583828?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937583802?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937583772?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937583751?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7937581784?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937557814?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937589984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937580941?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937582850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937582215?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937561071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937559093?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7937549609?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937593932?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937552958?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7937591827?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937578318?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937556768?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937558488?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937592556?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937579549?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937589388?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937548382?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937580263?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937598648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937567094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937587791?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937578957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937563028?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937555530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937575456?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7937587172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937554203?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937591028?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937594760?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7937597992?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-21-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
diff --git a/csv_reports/nightly-packaging-2022-08-22-0.csv b/csv_reports/nightly-packaging-2022-08-22-0.csv
deleted file mode 100644
index eed94f55391..00000000000
--- a/csv_reports/nightly-packaging-2022-08-22-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947723214?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947754653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947837427?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947734664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947808553?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947920574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-centos-7-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/7947802943?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947730769?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947741513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947880790?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947828693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7947909442?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7947826057?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-clean,pending,['https://github.com/ursacomputing/crossbow/runs/7947841265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py310-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7947791533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py310-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/7947857316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py310-cuda,pending,['https://github.com/ursacomputing/crossbow/runs/7947779167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7954469436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py37-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7947884809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py37-cpu-r40,pending,['https://github.com/ursacomputing/crossbow/runs/7947915423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py37-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/7947906283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py37-cuda,pending,['https://github.com/ursacomputing/crossbow/runs/7947914096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7954303202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py38-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/7947843752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py38-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/7947888349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py38-cuda,pending,['https://github.com/ursacomputing/crossbow/runs/7947886414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py38-ppc64le,pending,['https://github.com/ursacomputing/crossbow/runs/7947804211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7953259462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py39-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/7947817015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7954122030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-linux-gcc-py39-ppc64le,pending,['https://github.com/ursacomputing/crossbow/runs/7947774359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-arm64-clang-py310,pending,['https://github.com/ursacomputing/crossbow/runs/7947865800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-arm64-clang-py38,pending,['https://github.com/ursacomputing/crossbow/runs/7947895650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-arm64-clang-py39,pending,['https://github.com/ursacomputing/crossbow/runs/7947917752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-clang-py310,pending,['https://github.com/ursacomputing/crossbow/runs/7947761349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7954120679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-clang-py37-r41,pending,['https://github.com/ursacomputing/crossbow/runs/7947861565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-clang-py38,pending,['https://github.com/ursacomputing/crossbow/runs/7947904262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-osx-clang-py39,pending,['https://github.com/ursacomputing/crossbow/runs/7947848461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7953996929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-win-vs2017-py37-r40,pending,['https://github.com/ursacomputing/crossbow/runs/7947799005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-win-vs2017-py37-r41,pending,['https://github.com/ursacomputing/crossbow/runs/7947772197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-win-vs2017-py38,pending,['https://github.com/ursacomputing/crossbow/runs/7947748362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-conda-win-vs2017-py39,pending,['https://github.com/ursacomputing/crossbow/runs/7947750808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947767284?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947812861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947868538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947817230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7947739655?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/7947871283?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947871164?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947871061?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947870924?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7947761989?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7948465267?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947798744?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947798577?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-java-jars,github,{},java-jars/github.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7947786704?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7947888688?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-python-sdist,github,{},python-sdist/github.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7949614628?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7949122773?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7949122659?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7949122554?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7949122405?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7948592731?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7948592609?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7948592421?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7948592279?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7948592186?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7948592054?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7948591864?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7948591667?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947902281?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947902042?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947901870?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947901697?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947901467?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7947891342?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947875762?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947823630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947775253?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947856935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947819548?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947895695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947805955?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7947765144?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947847911?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947779646?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7947830961?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947878088?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947835108?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947918354?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947793272?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947821956?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947844134?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947850354?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947862421?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947727958?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947872609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947866220?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947832950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947781927?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947788802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947907156?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7947900203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947732270?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947810611?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947897905?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7947853406?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-22-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,fa33ca400759d4e9912b06df6680bf0199e28fd5
diff --git a/csv_reports/nightly-packaging-2022-08-23-0.csv b/csv_reports/nightly-packaging-2022-08-23-0.csv
deleted file mode 100644
index c33af5dd231..00000000000
--- a/csv_reports/nightly-packaging-2022-08-23-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969208956?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969207496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969216191?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969146308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969112698?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969182289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969246174?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969175619?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969264961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969260676?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969308812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7969279686?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7969233910?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7969177973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7971257557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7969779477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7970868651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7970091144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7970088490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/7970767353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/7971908652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7971512354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7972375357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7971486609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7970270360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7972156250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7969995985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7971282345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/7970968325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/7970798062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/7972115394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/7974908483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7970176522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7970793379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/7972112587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7971630966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7970539707'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/7970338339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/7970387932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/7971880619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/7971909803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/7971611574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/7970555428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,8b8914719cdfd6a18158783716562249025e9e63
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/7971296430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,8b8914719cdfd6a18158783716562249025e9e63
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969162089?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969229788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969118347?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969131851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7969204922?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,8b8914719cdfd6a18158783716562249025e9e63
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/7969164654?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969164538?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969164435?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969164329?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,8b8914719cdfd6a18158783716562249025e9e63
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7969148258?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,8b8914719cdfd6a18158783716562249025e9e63
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7970044850?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969241206?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969241050?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-java-jars,github,{},java-jars/github.yml,8b8914719cdfd6a18158783716562249025e9e63
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7969134080?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,8b8914719cdfd6a18158783716562249025e9e63
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7969120239?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-python-sdist,github,{},python-sdist/github.yml,8b8914719cdfd6a18158783716562249025e9e63
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7970980870?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7970607719?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7970607600?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7970607463?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7970607304?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969908155?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969908008?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969907829?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969907668?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969907481?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969907313?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969907172?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969907028?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969205122?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969204878?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969204652?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969204540?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969204317?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7969195843?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,8b8914719cdfd6a18158783716562249025e9e63
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969291228?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969141457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969248531?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969232547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969124402?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969293372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969122787?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7969227048?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969211389?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969187315?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7969136770?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969127689?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969184654?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969236136?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969115137?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969282133?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969251831?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969171093?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969180160?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969255957?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969197852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969300230?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969225071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969311341?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969263064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969254134?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7969302043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969284781?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969159862?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969272977?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,8b8914719cdfd6a18158783716562249025e9e63
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7969202442?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-23-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,8b8914719cdfd6a18158783716562249025e9e63
diff --git a/csv_reports/nightly-packaging-2022-08-24-0.csv b/csv_reports/nightly-packaging-2022-08-24-0.csv
deleted file mode 100644
index 293a1f59ac8..00000000000
--- a/csv_reports/nightly-packaging-2022-08-24-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990849785?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990748135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990881150?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990868741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990896572?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990831570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990870816?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990804108?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990856539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990703081?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990775268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/7990744457?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/7990746221?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/7991948634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7992069562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/7992083009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/7991970903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/7990894289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7991000024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7991468111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7991561308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/7992107848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/7991078834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7991417920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/7991439747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/7991640223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/7991283275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/7991313564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/7991058358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/7990885954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/7992167376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/7991809551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/7991390420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/7992041500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/7991998509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7991180746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7991992401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/7991906379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/7992363920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-win-vs2017-py310,failure,['https://github.com/ursacomputing/crossbow/runs/7991919703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-win-vs2017-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/7992333673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-win-vs2017-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/7991372807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-win-vs2017-py38,failure,['https://github.com/ursacomputing/crossbow/runs/7991495168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-conda-win-vs2017-py39,failure,['https://github.com/ursacomputing/crossbow/runs/7991065564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990762682?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990753077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990854402?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990741366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/7990894020?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/7990771454?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990771311?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990771149?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990771045?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/7990838190?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/7994585232?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990734973?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990734810?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-java-jars,github,{},java-jars/github.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/7990697239?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/7990713463?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-python-sdist,github,{},python-sdist/github.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/7992892286?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7992458896?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7992458805?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7992458689?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7992458599?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7991600145?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7991600012?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7991599862?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7991599713?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7991599557?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7991599411?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7991599217?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7991599082?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990899739?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990899569?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990899399?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990899251?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990899056?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/7990891261?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990817943?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990723855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990773046?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990802355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990829490?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990852223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990791039?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7990717206?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990797989?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990813045?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/7990737340?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990757540?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990788060?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990876417?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990795362?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990898870?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990808813?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990827050?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990777732?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990815386?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990799537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990792753?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990824578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990714993?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990755546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990710568?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/7990863872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990866480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990889206?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990728069?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/7990883505?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,965e761b852bee83ef9c98d0f46a83491dd3f1fd
diff --git a/csv_reports/nightly-packaging-2022-08-25-0.csv b/csv_reports/nightly-packaging-2022-08-25-0.csv
deleted file mode 100644
index 640f831ba88..00000000000
--- a/csv_reports/nightly-packaging-2022-08-25-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011879747?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011894957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011983409?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011949913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011900361?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011850627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011961309?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011839716?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011963488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8012026422?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011930673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8011882152?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8011989784?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8017384827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8016586763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8016684817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8017931762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8016825405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py37-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8012012573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py37-cpu-r40,pending,['https://github.com/ursacomputing/crossbow/runs/8012008297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py37-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/8012019703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8016104138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8018111415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8016999205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8018070587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py38-cuda,pending,['https://github.com/ursacomputing/crossbow/runs/8012010397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8017085537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py39-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8012031376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8017478963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8016072337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8016228762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8016159234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8017023560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-osx-arm64-clang-py39,pending,['https://github.com/ursacomputing/crossbow/runs/8012037962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8016471350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-osx-clang-py37-r40,pending,['https://github.com/ursacomputing/crossbow/runs/8012006407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-osx-clang-py37-r41,pending,['https://github.com/ursacomputing/crossbow/runs/8012036288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8018105427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8016753194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8017328526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8018130452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8018203508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8017898413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8018242112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011939621?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011911836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011965393?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8012001923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/8011987898?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/8011967948?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011967831?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011967698?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011967561?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/8011886500?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8012607981?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011995347?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011995203?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-java-jars,github,{},java-jars/github.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8011923123?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8012031642?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-python-sdist,github,{},python-sdist/github.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8013665817?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8013278089?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8013277987?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8013277888?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8013277779?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8012995460?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8012995341?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8012995227?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8012995121?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8012994993?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8012994890?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8012994776?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8012994595?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011911502?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011911352?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011911195?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011910987?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011910818?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8011903170?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011981085?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011907170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011997554?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8012013063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8012024552?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011985048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011971925?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8011870362?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011927347?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011855782?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8011909744?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8012000385?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011916491?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011863026?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8012015128?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011905530?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011948200?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011891252?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011897980?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011842480?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011969139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011920675?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8012022072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011943873?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8012019958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011992726?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8011941357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011925521?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011884781?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011853814?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8011888802?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,897c186f475f3dd82c1ab47e5cfb87cb0fed8440
diff --git a/csv_reports/nightly-packaging-2022-08-26-0.csv b/csv_reports/nightly-packaging-2022-08-26-0.csv
deleted file mode 100644
index e5432c5a015..00000000000
--- a/csv_reports/nightly-packaging-2022-08-26-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032758497?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032901251'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032808477?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032883227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032849372?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032843063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032887545?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032858564?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032774366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8032765502?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032812237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8032728723?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8032725052?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8034246832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py310-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8032900686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8033247734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8033918024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8033629540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8033840936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8033646826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8033403598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8034731469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8034270539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8033399990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8034525238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8034331303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8035250827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8035117599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8033485179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8033474533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8034319347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8033723893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8034735814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8035534694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8035740145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8034584634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8035571858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8035661581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8035371731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8034540646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8034667859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8034205491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8034648843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8035115589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032817385?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032862742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032910127?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032782165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/8032810546?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-homebrew-r-autobrew,pending,"['https://github.com/ursacomputing/crossbow/runs/8032828364?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032828251?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032828159?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032828052?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/8032823562?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8033527132?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032815244?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032815059?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-java-jars,github,{},java-jars/github.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8032762858?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8032832609?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-python-sdist,github,{},python-sdist/github.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8034417787?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8034053637?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8034053530?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8034053376?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8034053245?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8033405606?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8033405497?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8033405371?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8033405281?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8033405190?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8033405108?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8033405001?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8033404889?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032754631?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032754535?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032754453?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032754334?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032754217?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8032745715?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032878996?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032780267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032739252?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032846598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032830342?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032884872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8032880896?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8032801956?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032776424?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032788232?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8032730861?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032853878?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032754768?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032771673?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032790210?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032892306?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032870351?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032799467?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032792708?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032865009?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032751882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032732990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032836880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032767950?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032741655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032889888?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8032742932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032855721?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032825136?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032797838?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8032867819?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-26-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b832853ba62171d5fe5077681083fc6ea49bfd44
diff --git a/csv_reports/nightly-packaging-2022-08-27-0.csv b/csv_reports/nightly-packaging-2022-08-27-0.csv
deleted file mode 100644
index e832bf2eef7..00000000000
--- a/csv_reports/nightly-packaging-2022-08-27-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049201605?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049183227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049174661?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049194286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049204143?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049199821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049173400?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049169243?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8049186377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8049214405?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049162485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8049168496?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8049206666?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8049192746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049698968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8049669853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8049577035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8049657804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049434156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8049463751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8049410559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8049352408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8049751286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8050019623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8049535916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8049875432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8049802865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049773207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8049976727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8049346850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8049936885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8049623226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8049410971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8049859746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8049458494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8049600185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8049962471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8049431405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8049823556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8049470558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8049977336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8049636957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8049912665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8049618259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049196029?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049180803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8049170604?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049190029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/8049193044?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/8049201192?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049201163?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049201129?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049201098?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/8049182141?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8049373908?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049204751?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049204684?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-java-jars,github,{},java-jars/github.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8049187731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8049180373?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-python-sdist,github,{},python-sdist/github.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8049695257?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049566922?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049566896?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049566865?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049566834?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049418605?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049418566?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049418527?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049418495?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049418462?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049418437?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049418414?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049418388?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049208481?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049208457?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049208427?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049208396?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049208356?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8049206041?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049179084?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8049167485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049181655?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049208054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049198425?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8049186965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049171962?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8049166621?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049160652?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049212006?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8049193602?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049167976?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049188167?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049213831?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049195313?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-mavericks-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8049200496?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049175457?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049176666?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049177870?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049192267?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049164621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049191087?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049173998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049161421?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049163268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049189199?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8049216450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049197658?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049162177?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049199493?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8049165916?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-27-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,1b9c57e20802fb061c90837c39e99d8fa69cc212
diff --git a/csv_reports/nightly-packaging-2022-08-28-0.csv b/csv_reports/nightly-packaging-2022-08-28-0.csv
deleted file mode 100644
index e1c4aca7b4d..00000000000
--- a/csv_reports/nightly-packaging-2022-08-28-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056372620?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056393028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056383669?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056351327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056350660?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056366502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056365789?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056368428?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056353025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056384196?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056348667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8056361509?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8056382286?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8056880529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056790889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8056957972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8056551160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8057167251'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056958693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8056748706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8057207773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8056979146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8056570055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056654734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8057000760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8057189527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8056560435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056627466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8056767772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8056517514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8056617878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8056753618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8056533028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8056868622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8056860450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8057236711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8056742726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8057154472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8056868194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8056961622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8057002618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8057306829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8057062123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8057238055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056357295?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056388155'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056362007?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056370094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/8056389560?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/8056346768?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056346744?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056346723?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056346694?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/8056394943?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8056569009?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056349384?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056349359?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-java-jars,github,{},java-jars/github.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8056351990?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8056345949?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-python-sdist,github,{},python-sdist/github.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8056855105?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056745404?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056745376?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056745348?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056745313?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056588722?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056588683?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056588657?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056588623?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056588571?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056588541?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056588501?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056588463?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056382396?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056382368?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056382346?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056382317?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056382285?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8056380474?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056398653?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056354643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056382949?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056369033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056386540?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056375912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056377202?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8056387648?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056357979?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056390265?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8056388765?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056360086?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056358748?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056378497?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056360710?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056355129?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056393576?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056374688?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056364902?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056355969?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056359384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056363747?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056371263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056396180?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056347482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056392120?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8056377872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056373315?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056381731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056379689?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8056364377?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-28-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
diff --git a/csv_reports/nightly-packaging-2022-08-29-0.csv b/csv_reports/nightly-packaging-2022-08-29-0.csv
deleted file mode 100644
index 8e697e869ea..00000000000
--- a/csv_reports/nightly-packaging-2022-08-29-0.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066844531?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066955988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066922292?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066879328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066821910?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066825377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066819303?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066920421?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066924585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066877538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066875479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8066827479?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8066790226?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8068025649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8069538264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8068579675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8067341419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8067682019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8068818668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8068096945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8067989062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8068266660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8067789415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8067603381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8069436314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8067305853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8068768887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8068805143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8069055192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8068364713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8067471170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8071391179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8067652539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8067745015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8068835137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8069556057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8068983951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8067897405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8067803096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8069725905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8070092779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8068641677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8069695722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8068813253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066796685?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066784691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066949924?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066823696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/8066895354?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/8066889145?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066889014?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066888840?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066888689?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/8066909307?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8067543209?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066829768?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066829617?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-java-jars,github,{},java-jars/github.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8066886275?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8066858162?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-python-sdist,github,{},python-sdist/github.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8068714002?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8068354443?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8068354316?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8068354228?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8068354049?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8067522078?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8067521949?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8067521835?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8067521686?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8067521516?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8067521389?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8067521283?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8067521149?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066860869?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066860759?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066860657?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066860488?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066860346?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8066853902?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066836543?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066914039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066892867?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066958152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066851534?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066947386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066779271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8066848641?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066862538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066792282?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8066933444?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066943319?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066808506?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066873645?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066884170?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13', 'arrow_s3': 'ON', 'arrow_gcs': 'ON'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-mavericks-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066776291?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-mavericks-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-mavericks-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066861052?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-mavericks-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-mavericks-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066840090?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-mavericks-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-macos-mavericks-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066961136?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-macos-mavericks-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.9', 'arrow_s3': 'OFF', 'arrow_gcs': 'OFF'}",python-wheels/github.osx.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066802928?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066817526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066903626?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066907435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066916012?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066805585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066899367?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8066787684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066813380?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066905981?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066846992?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8066901629?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-29-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,bd768506c7cecc62ceaea7c9799a33a3ea4d24b2
diff --git a/csv_reports/nightly-packaging-2022-08-30-0.csv b/csv_reports/nightly-packaging-2022-08-30-0.csv
deleted file mode 100644
index 6c7e8ef9cb2..00000000000
--- a/csv_reports/nightly-packaging-2022-08-30-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8088059606?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8088050484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087947262?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8088038617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8088019276?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8087942425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8088041574?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8088009410?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8087904302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087918670?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8088032864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8087925329?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8088046607?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8088203491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8091681910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8091373682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8092434822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8089290531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8088142739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8088875069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8090776729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8093115777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8090748633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8088603969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8088862221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8092760272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8088702046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8091009795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8091490975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8088456776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8091886311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8088746296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8092009223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8090586067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8091636214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8089406917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8090344198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8089094742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8089970847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8089410068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8089151749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8090338763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8089610581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8090445725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087987788?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8087920067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8088048838?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8087958957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/8087923120?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/8087985819?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8087985725?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8087985540?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8087985410?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/8087973961?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8088855327?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8088044036?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8088043878?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-java-jars,github,{},java-jars/github.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8088031101?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8087913066?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-python-sdist,github,{},python-sdist/github.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/8090035255?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8089528929?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8089528739?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8089528620?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8089528459?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8088652770?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8087907634?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8087907513?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8087907357?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8087907176?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8087907008?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8087899488?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087870332?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8088054414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8088026212?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8087906239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8088016892?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8087961959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8087956960?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8087894557?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8088023967?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8087994575?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8087978928?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087939899?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087909330?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087884663?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087964245?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087971434?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8088035266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8088061968?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8087982746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8088052943?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8087996283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087882210?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8088000752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8088057045?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087902149?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087892552?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8087998940?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-30-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,93b63e8f3b4880927ccbd5522c967df79e926cda
diff --git a/csv_reports/nightly-packaging-2022-08-31-0.csv b/csv_reports/nightly-packaging-2022-08-31-0.csv
deleted file mode 100644
index ab4c95090ad..00000000000
--- a/csv_reports/nightly-packaging-2022-08-31-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109603305?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-almalinux-8-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109536268?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109664084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109732564?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109574520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109679312?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109477809?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109719631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109514679?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109641569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8109624865?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8109722437?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8109510387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8110519053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8110360841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8111903738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8110986408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8111983430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8111773671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8111831143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8110281504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8111672578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8111668134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8111616827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8111102994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8110329887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8111755156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8112265879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8111036137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8110354183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8111231755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8112522070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8111406897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8111714252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8111330234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8110951670'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8112591717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8112664159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8110830587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8110967666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8112130368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8110577286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8110548951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109569134?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109604010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109690167?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109672033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/8109633109?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/runs/8109508901?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109508733?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109508555?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109508391?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/8109553018?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8110428496?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109673263?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109673084?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-java-jars,github,{},java-jars/github.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8109527414?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8109494859?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-python-sdist,github,{},python-sdist/github.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8111350655?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110912175?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110912047?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110911886?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110911709?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110524280?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110524160?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110523842?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110523600?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110523402?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110523206?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110522896?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8110522699?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109637183?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109637076?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109636942?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109636758?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109636536?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8109629485?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109713268?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-ubuntu-bionic-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109549587?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109637407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109659835?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-ubuntu-jammy-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109705987?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8109610021?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109497919?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109593673?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8109581889?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109566033?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109517745?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109666089?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109621569?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109533408?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109591006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109488136?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109630698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109484515?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109666076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109501307?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8109676955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109556572?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109644571?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109504975?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8109523697?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-08-31-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,cf27001da088d882a7d460cddd84a0202f3d8eba
diff --git a/csv_reports/nightly-packaging-2022-09-01-0.csv b/csv_reports/nightly-packaging-2022-09-01-0.csv
deleted file mode 100644
index 279e74a57a6..00000000000
--- a/csv_reports/nightly-packaging-2022-09-01-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131158784?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131201781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131208513?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131263393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131233783?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131161315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131129310?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131119387?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131147886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131223562?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131180017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8131066817?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8131057867?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8131143333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131942592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8131724541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8132712343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8132983321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8133876888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8133605839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8133004566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8132394476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8132991097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py38-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8131753359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py38-cuda,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py38-ppc64le,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8132703945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8131860534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8133301484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8131932383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8133871304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8133555595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8131967718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8132156554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8133365277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8133372701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8133304655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8134064430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-win-vs2017-py310,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8133687337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8132839642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8132285634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8132275361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131038278?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131167917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131277297?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131273790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/8131076461?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/runs/8131196040?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131195912?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131195800?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131195664?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/8131021608?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8131731109?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131055261?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131055057?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-java-jars,github,{},java-jars/github.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8131236656?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8131137966?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-python-sdist,github,{},python-sdist/github.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8133096584?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8132698317?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8132698146?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8132697947?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8132697763?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131901109?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131900917?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131900709?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131900567?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131900424?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131900279?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131900102?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131899907?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131145408?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131145246?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131145112?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131144887?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131144642?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8131134665?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131214636?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131082043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131031443?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131185978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131271109?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8131059978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131122860?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8131088183?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131251138?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131154915?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8131204907?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131174095?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131097848?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-macos-high-sierra-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131109892?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-macos-high-sierra-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131017953?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131164845?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131230172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131047492?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131140939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131126508?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131219951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131192457?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8131177107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131284235?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131044057?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131257112?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8131024208?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d3d6371e1e7627d0c5c289acb8eee38ab0cea533
diff --git a/csv_reports/nightly-packaging-2022-09-02-0.csv b/csv_reports/nightly-packaging-2022-09-02-0.csv
deleted file mode 100644
index b5a9d2bdfa3..00000000000
--- a/csv_reports/nightly-packaging-2022-09-02-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152525786?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152610530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152510722?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152537391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152429148?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152513310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152502070?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152480041?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152477693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152555015?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152470434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8152446899?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8152426136?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8153987978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8153254401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8154880125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8153191834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8154779808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8153943267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8154659147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8154041259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8154356131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8154013291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8154239855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8153119622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8153164338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8153827113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8153270238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8154955699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8154502455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8154046657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8154986162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8154237213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8154385474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8154725398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8155539360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8154728515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8153474872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8153505063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-win-vs2017-py310,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8153848683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8155194161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8153657334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8153636561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152572443?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152628847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152473273?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152637967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/8152623338?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/runs/8152453433?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152453289?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152453191?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152453087?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/8152569695?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8153226884?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152535233?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152535086?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-java-jars,github,{},java-jars/github.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8152411807?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8152607570?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-python-sdist,github,{},python-sdist/github.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8153888492?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153521824?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153521726?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153521613?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153521452?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153499783?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153499682?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153499568?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153499457?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153499354?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153499198?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153499054?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8153498899?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152502017?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152501848?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152501700?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152501594?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152501457?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8152492504?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152597647?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152417518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152563890?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152545615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152468352?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8152647499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8152435131?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8152600938?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8152408335?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152566656?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/runs/8152523015?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8152635585?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8152484047?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8152507515?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8152489577?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8152450138?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152414569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152582508?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8152423081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152464986?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8152579139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152551513?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8152444085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8152641739?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152585554?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152498687?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8152441269?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-02-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,413e49385f52b8c76aa02f67588f4dc66d5ed86b
diff --git a/csv_reports/nightly-packaging-2022-09-03-0.csv b/csv_reports/nightly-packaging-2022-09-03-0.csv
deleted file mode 100644
index 25e713c2702..00000000000
--- a/csv_reports/nightly-packaging-2022-09-03-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168300611?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168330971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168288371?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168289834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168337082?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168304644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168310762?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168273629?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168283586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168325697?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168279210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8168340264?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,672431b5146e078406c9295e873705db553fa115
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8168333499?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8168472078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168524260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8168448193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8168675367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8169018651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168747599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8168824226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8168978241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8168694448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8169060089'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168745941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8168867979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8168471060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8168978835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168676223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8168858178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8168460677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8168504473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,672431b5146e078406c9295e873705db553fa115
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8168451585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,672431b5146e078406c9295e873705db553fa115
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8168838777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,672431b5146e078406c9295e873705db553fa115
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8168506394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,672431b5146e078406c9295e873705db553fa115
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8169087802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,672431b5146e078406c9295e873705db553fa115
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8169642459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,672431b5146e078406c9295e873705db553fa115
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8168613408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,672431b5146e078406c9295e873705db553fa115
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8168723375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,672431b5146e078406c9295e873705db553fa115
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8168588497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,672431b5146e078406c9295e873705db553fa115
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8169059964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,672431b5146e078406c9295e873705db553fa115
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8168794472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,672431b5146e078406c9295e873705db553fa115
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8168971721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,672431b5146e078406c9295e873705db553fa115
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8168579316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,672431b5146e078406c9295e873705db553fa115
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8168866294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,672431b5146e078406c9295e873705db553fa115
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168344494?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168308197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168294294?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8168271941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/8168323704?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,672431b5146e078406c9295e873705db553fa115
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/runs/8168316898?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168316853?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168316808?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168316768?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,672431b5146e078406c9295e873705db553fa115
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/8168342396?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,672431b5146e078406c9295e873705db553fa115
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8168510178?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168301616?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168301571?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-java-jars,github,{},java-jars/github.yml,672431b5146e078406c9295e873705db553fa115
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8168341579?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,672431b5146e078406c9295e873705db553fa115
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8168290791?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-python-sdist,github,{},python-sdist/github.yml,672431b5146e078406c9295e873705db553fa115
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8168757592?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168647293?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168647237?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168647206?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168647181?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168592468?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168592441?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168592414?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168592374?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168592340?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168592314?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168592278?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168592222?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168287017?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168286964?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168286930?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168286906?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168286855?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8168284733?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,672431b5146e078406c9295e873705db553fa115
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168302345?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168287280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168270834?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168315646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168343462?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8168311450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168305626?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8168312729?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168303303?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168320824?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8168329743?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8168322594?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8168339317?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8168317680?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8168299736?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168324543?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168331768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8168319715?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168332570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8168274635?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168309633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8168277237?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8168279847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,672431b5146e078406c9295e873705db553fa115
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168335359?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,672431b5146e078406c9295e873705db553fa115
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168280979?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,672431b5146e078406c9295e873705db553fa115
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168318664?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,672431b5146e078406c9295e873705db553fa115
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8168328973?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-03-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,672431b5146e078406c9295e873705db553fa115
diff --git a/csv_reports/nightly-packaging-2022-09-04-0.csv b/csv_reports/nightly-packaging-2022-09-04-0.csv
deleted file mode 100644
index d6b6fbbf2cd..00000000000
--- a/csv_reports/nightly-packaging-2022-09-04-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175352464?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175332549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175297481?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175344537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175333735?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175279254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175343594?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175288916?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175336654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175286007?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175302098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8175322510?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8175306547?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8175296247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175510805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8175485782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8175459846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8176054463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175837991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8176080231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8175871332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8175655758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8175867286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8176156112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8175713751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8176063875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8175545743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175898862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8175887271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8175828724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8175567964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8175688178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8176091190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8176162224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8175587634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8175661596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8176590937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8175580696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8175916764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8176024583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8175916370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8175627943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8175933038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8175683825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175295541?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175315719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175276651?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175342492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/8175315009?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/runs/8175329468?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175329442?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175329420?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175329401?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/8175308166?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8175483216?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175327501?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175327443?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-java-jars,github,{},java-jars/github.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8175296627?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8175328404?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-python-sdist,github,{},python-sdist/github.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8175863042?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175745987?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175745960?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175745930?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175745902?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175516789?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175516754?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175516708?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175516666?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175516630?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175516597?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175516564?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175516526?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175296850?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175296803?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175296765?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175296707?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175296623?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8175293572?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175284242?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175318260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175351110?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175294473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175326360?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8175313248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175324568?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8175301067?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8175339617?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175298415?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8175312309?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8175337806?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8175300339?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8175305602?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8175350177?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175282040?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8175303658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8175319639?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175346494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175317719?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175308961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8175274975?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8175289889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175288151?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175286985?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175292598?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8175321764?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-04-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
diff --git a/csv_reports/nightly-packaging-2022-09-05-0.csv b/csv_reports/nightly-packaging-2022-09-05-0.csv
deleted file mode 100644
index e4ac262b7a4..00000000000
--- a/csv_reports/nightly-packaging-2022-09-05-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184961029?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184830332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184856679?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184850445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184922474?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184802712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184887220?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184797549?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184821966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184964731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184986593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8184844722?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8184881233?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8186077020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8185605868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8186978597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8186835080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8187562320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8185507782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8186439341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8185631323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8186960781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8186907802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8186499599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8187243982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8185512779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8185679235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8186175966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8187059716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8186690666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8186278184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8186653405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8186589146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8187290655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8187515024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8186120443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8186021759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8186517901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8185799351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8185817487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8187779391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8186039800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8187134912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8187804432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184790690?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184973898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184847646?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184951124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/8184940604?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/runs/8184990978?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184990843?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184990693?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184990558?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/8184919460?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8185447475?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184784269?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184784151?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-java-jars,github,{},java-jars/github.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8184799885?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8185002606?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-python-sdist,github,{},python-sdist/github.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8186366694?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185992664?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185992544?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185992449?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185992331?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185926373?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185926234?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185926131?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185926026?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185925929?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185925810?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185925698?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8185925562?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184897587?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184897455?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184897348?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184897194?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184897009?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8184890558?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184827917?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184836328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184983609?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184864385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184819929?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8184759150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184771377?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8184908829?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8184899728?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184780894?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8184787349?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184833453?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8184777361?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8184912165?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8184993517?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8184853502?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184816466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184931497?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184976751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184808365?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184884453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8184896653?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8184814198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184878781?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184954304?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184996346?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8184934138?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-05-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,50a7d15dfb4cbc4dd449ff2bb3ba2b1cde62a3ab
diff --git a/csv_reports/nightly-packaging-2022-09-06-0.csv b/csv_reports/nightly-packaging-2022-09-06-0.csv
deleted file mode 100644
index 9475532cbf8..00000000000
--- a/csv_reports/nightly-packaging-2022-09-06-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202961236?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202899823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202863244?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202993952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202965443?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202944191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202914108?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202799538?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202849314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202786656?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202775044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8202968469?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8202782995?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8202783099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8203505394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8204658952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8204339284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8204940713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8205314452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8204637312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8203568609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8204236050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8203671265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8203837714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8204095217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8203682705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8205755588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8205411719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8205205903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8203606848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8203678526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8204676342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8204542870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8205577884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8203759172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8206121237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8205802668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8205758745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8205189881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8203945300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8205368452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8204867537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8204988493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8204690894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202754855?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202957703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202947660?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202986755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/runs/8202741359?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/runs/8202882944?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202882794?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202882591?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202882458?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/8202940554?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8206301875?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202875100?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202874814?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-java-jars,github,{},java-jars/github.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8202760908?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8202745443?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-python-sdist,github,{},python-sdist/github.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8204492339?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8204104524?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8204104335?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8204104219?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8204104062?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8203770063?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8203769874?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8203769713?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8203769575?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8203769421?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8203769277?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8203769036?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8203768901?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202833735?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202833600?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202833492?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202833391?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202833236?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8202824419?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8203000856?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202757334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202814055?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202846369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202830372?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8202747529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8202843271?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8203004583?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202975640?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8202771383?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8202927870?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8202989834?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8202820866?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8202792830?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8202810456?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202910748?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202796336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202834006?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202789134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202950923?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8202839755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8202751098?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8202934083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202856183?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202920728?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202931251?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8202889037?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-06-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,23c5ceea785a96cc01c0fa976db1ffc7ff3e839f
diff --git a/csv_reports/nightly-packaging-2022-09-08-0.csv b/csv_reports/nightly-packaging-2022-09-08-0.csv
deleted file mode 100644
index 8eed6e09c0e..00000000000
--- a/csv_reports/nightly-packaging-2022-09-08-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245244820?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245367083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245304888?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245212399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245358594?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245369530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245335877?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245344699?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245388749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245338745?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245207652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8245261386?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8245168787?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8245239311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8246076242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8246777285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8245786237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8247870959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8247557144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8247622449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8246871935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8246367996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8246676868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245985545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8248035982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8245766598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8247517718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8247357562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8245937488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8245867835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8245941504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8246960997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8248299050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8246147749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8247368653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8247347122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8247957645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8247081500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8248552728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8247540177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8246675432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8246896953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8247968791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8248842051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245277728?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245181627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245335908?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245235149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/8245158682?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/runs/8245248225?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245248079?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245247943?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245247824?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/8245348287?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/runs/8245950746?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245195575?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245195411?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-java-jars,github,{},java-jars/github.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8245251112?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8245351162?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-python-sdist,github,{},python-sdist/github.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/runs/8247018048?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8246609846?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8246609656?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8246609503?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8246609359?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8246202589?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245336663?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245306787?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245306648?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245306479?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245306264?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8245297994?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245257950?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245220616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245152342?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245361223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245335899?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8245263859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8245218115?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8245224740?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245335873?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245231610?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8245146022?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8245284059?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8245178451?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8245291290?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8245162348?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245294918?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245364154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245139416?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245237850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8245201782?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8245191810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245378736?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8245391299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245165616?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245301894?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245385945?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8245280910?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-08-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,6ff522433bc3a3739e50e4f323cf521be1ad83dd
diff --git a/csv_reports/nightly-packaging-2022-09-10-0.csv b/csv_reports/nightly-packaging-2022-09-10-0.csv
deleted file mode 100644
index 846511e1658..00000000000
--- a/csv_reports/nightly-packaging-2022-09-10-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283384040?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283412358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283380890?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283420738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283410084?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283424830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283429172?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283425495?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283376477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283386931?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283404890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8283413904?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8283379195?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8283392803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283855826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8283564654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8283584536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8283776512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8284075177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8283602693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8284032453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8284193486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8284144676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283912780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8283908865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8283597809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8283847237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8284119863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8284053395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8283640568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8283635349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8284250502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8283832814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8283616883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8284106019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8284076415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8283965057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8283695513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8283925901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8283691919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8284281248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8284250143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8283907954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8283706453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283398128?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283395965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283406410?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283401420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/8283408639?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/runs/8283373226?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283373210?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283373186?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283373132?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/8283402517?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8283771298?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283422363?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283422332?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-java-jars,github,{},java-jars/github.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8283415283?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8283422931?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-python-sdist,github,{},python-sdist/github.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8283976516?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283858598?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283858566?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283858535?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283858487?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283652110?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283652088?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283652049?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283652014?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283651962?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283651909?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283651875?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283651843?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283391862?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283391822?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283391782?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283391747?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283391685?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8283388785?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283381673?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283387658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283390511?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283415961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283399353?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8283395362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283429865?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8283418255?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283419676?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283389606?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8283385110?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8283407111?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8283423707?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8283411693?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8283394778?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8283400567?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283399924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8283419004?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8283393098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8283430455?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283427062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283373832?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8283394290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283377806?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283416740?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283417611?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8283426339?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-10-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,f184255cbb9bf911ea2a04910f711e1a924b12b8
diff --git a/csv_reports/nightly-packaging-2022-09-11-0.csv b/csv_reports/nightly-packaging-2022-09-11-0.csv
deleted file mode 100644
index 58855c244ca..00000000000
--- a/csv_reports/nightly-packaging-2022-09-11-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290923100?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290957428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290936983?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290947521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290942917?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290983112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290928710?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290973765?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290927721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290933557?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290932563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8290929582?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8290977525?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8291240803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8291666309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8291837125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8291108079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8291585144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8291239194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8291225663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8291226374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8291449835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8291239040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8291344209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8291510772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8291417275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8291469364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8291701071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8291691782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8291187621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8291817982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8291361493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8291580706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8291483752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8291799132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8291322975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8291833171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8292000680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8291680766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-win-vs2017-py310,success,['https://github.com/ursacomputing/crossbow/runs/8291929817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-win-vs2017-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8291366885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-win-vs2017-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8291603390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-win-vs2017-py38,success,['https://github.com/ursacomputing/crossbow/runs/8291389597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,a63e60bad89b41266d155bc496eb383765702492
-conda-win-vs2017-py39,success,['https://github.com/ursacomputing/crossbow/runs/8291683005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,a63e60bad89b41266d155bc496eb383765702492
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290975910?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290936105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290964570?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290985377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/8290925904?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,a63e60bad89b41266d155bc496eb383765702492
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/runs/8290966302?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290966277?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290966246?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290966225?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,a63e60bad89b41266d155bc496eb383765702492
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/runs/8290979016?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,a63e60bad89b41266d155bc496eb383765702492
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8291302910?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290955064?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290955013?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-java-jars,github,{},java-jars/github.yml,a63e60bad89b41266d155bc496eb383765702492
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8290984593?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,a63e60bad89b41266d155bc496eb383765702492
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8290976510?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-python-sdist,github,{},python-sdist/github.yml,a63e60bad89b41266d155bc496eb383765702492
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8291416872?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291269213?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291269172?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291269135?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291269081?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291151976?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291151951?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291151905?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291151880?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291151849?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291151814?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291151790?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8291151760?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290926601?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290926570?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290926541?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290926506?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290926450?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8290924205?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,a63e60bad89b41266d155bc496eb383765702492
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290960599?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290943639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290979984?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290940836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290959650?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8290941911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290963622?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8290965619?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290939319?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8290953406?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8290969659?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8290990072?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8290935376?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8290991819?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8290930687?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290940346?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290978278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290948483?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8290934471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290988265?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8290946013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8290961284?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8290937770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290931767?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290950879?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290955978?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,a63e60bad89b41266d155bc496eb383765702492
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8290958156?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-11-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,a63e60bad89b41266d155bc496eb383765702492
diff --git a/csv_reports/nightly-packaging-2022-09-12-0.csv b/csv_reports/nightly-packaging-2022-09-12-0.csv
deleted file mode 100644
index edd6de45275..00000000000
--- a/csv_reports/nightly-packaging-2022-09-12-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301697464?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301625815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301691654?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301637453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301679662?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301479712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301622951?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301614501?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301508527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301561824?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-centos-9-stream-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8301688289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/runs/8301628627?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/runs/8301473953?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8306735386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py310-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8301583316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py310-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/8301655942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py310-cuda,pending,['https://github.com/ursacomputing/crossbow/runs/8301557621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py310-ppc64le,pending,['https://github.com/ursacomputing/crossbow/runs/8301607212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py37-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8301560678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py37-cpu-r40,pending,['https://github.com/ursacomputing/crossbow/runs/8301637929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py37-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/8301604225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py37-cuda,pending,['https://github.com/ursacomputing/crossbow/runs/8301554847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8305776406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py38-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8301679143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py38-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/8301534806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8304630394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8304657065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8305420929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py39-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/8301653449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py39-cuda,pending,['https://github.com/ursacomputing/crossbow/runs/8301566177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-linux-gcc-py39-ppc64le,pending,['https://github.com/ursacomputing/crossbow/runs/8301696644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8308219466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-osx-arm64-clang-py38,pending,['https://github.com/ursacomputing/crossbow/runs/8301552188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-osx-arm64-clang-py39,pending,['https://github.com/ursacomputing/crossbow/runs/8301584719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-osx-clang-py310,pending,['https://github.com/ursacomputing/crossbow/runs/8301633173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-osx-clang-py37-r40,pending,['https://github.com/ursacomputing/crossbow/runs/8301660214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8307127273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-osx-clang-py38,pending,['https://github.com/ursacomputing/crossbow/runs/8301515818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8308331186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-win-vs2017-py310,pending,['https://github.com/ursacomputing/crossbow/runs/8301619681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-win-vs2017-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-win-vs2017-py37-r40,pending,['https://github.com/ursacomputing/crossbow/runs/8301529320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-win-vs2017-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-win-vs2017-py37-r41,pending,['https://github.com/ursacomputing/crossbow/runs/8301570987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-win-vs2017-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-win-vs2017-py38,pending,['https://github.com/ursacomputing/crossbow/runs/8301645602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-win-vs2017-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-conda-win-vs2017-py39,pending,['https://github.com/ursacomputing/crossbow/runs/8301543413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-azure-conda-win-vs2017-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301538287?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8301459673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301670058?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301493837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/runs/8301546914?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/runs/8301482727?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301482610?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301482483?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301482375?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/runs/8301576429?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-java-jars,success,"['https://github.com/ursacomputing/crossbow/runs/8302762870?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301588611?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301588409?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-java-jars,github,{},java-jars/github.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-nuget,success,['https://github.com/ursacomputing/crossbow/runs/8301496919?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/runs/8301529957?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-python-sdist,github,{},python-sdist/github.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/runs/8303090302?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302696913?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302696718?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302696598?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302696214?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302375499?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302375390?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302375238?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302375097?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302374964?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302374830?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302374715?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8302374598?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301498207?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301497962?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301497734?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301497597?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301497348?check_suite_focus=true', 'https://github.com/ursacomputing/crossbow/runs/8301488892?check_suite_focus=true']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301685957?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301475934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301648812?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301593226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301544482?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8301645901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301640442?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8301666517?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8301682731?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301663650?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/runs/8301491787?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8301523656?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8301570736?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8301596344?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/runs/8301523044?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301468160?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301499745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301536002?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301619728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301608429?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301660355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301591051?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8301598832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301584931?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301610642?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301573525?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/runs/8301517906?check_suite_focus=true'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-12-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,3aee08b41b4f748bc5086f9728c4314a70067d8a
diff --git a/csv_reports/nightly-packaging-2022-09-14-0.csv b/csv_reports/nightly-packaging-2022-09-14-0.csv
deleted file mode 100644
index 0cdeb354d8a..00000000000
--- a/csv_reports/nightly-packaging-2022-09-14-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051428547/jobs/4919650203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346286104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051391963/jobs/4919570086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346101498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051423673/jobs/4919638540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346194842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051421391/jobs/4919634057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051344091/jobs/4919466086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346228996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051415007/jobs/4919620336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346079435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051422211/jobs/4919635938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051352555/jobs/4919484036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8346103285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8347571338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8347454770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8346697309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8348547184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8347645058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8347793467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8346823259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8348530651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8348254209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346883534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8346659404'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8348272144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8348576490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346927434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8347660508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8348443291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8347005483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8347625603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8347973967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8346950533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8347696879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8349073997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8349338975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8347894322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8348802892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8346556047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8347322853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8346619708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8346510469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8348131343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051383891/jobs/4919552895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8346291434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051371769/jobs/4919527356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346144988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051388646/jobs/4919563040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3051426764/jobs/4919646052', 'https://github.com/ursacomputing/crossbow/actions/runs/3051426764/jobs/4919645956', 'https://github.com/ursacomputing/crossbow/actions/runs/3051426764/jobs/4919645844', 'https://github.com/ursacomputing/crossbow/actions/runs/3051426764/jobs/4919645736']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051372557/jobs/4919529336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3051350854/jobs/4920402803', 'https://github.com/ursacomputing/crossbow/actions/runs/3051350854/jobs/4919481075', 'https://github.com/ursacomputing/crossbow/actions/runs/3051350854/jobs/4919480879']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-java-jars,github,{},java-jars/github.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051345237/jobs/4919468636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051381602/jobs/4919548272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-python-sdist,github,{},python-sdist/github.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4921068827', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920757716', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920757582', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920757506', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920757409', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920241863', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920241754', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920241654', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920241566', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920241473', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920241341', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4920241226', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4919566801', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4919566667', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4919566564', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4919566417', 'https://github.com/ursacomputing/crossbow/actions/runs/3051387437/jobs/4919560240']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051385968/jobs/4919557416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346264084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051382637/jobs/4919550538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346114125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051364976/jobs/4919512730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346049386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051377064/jobs/4919538720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051405328/jobs/4919599807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051374903/jobs/4919534307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051403310/jobs/4919595284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051361085/jobs/4919503855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-macos-high-sierra-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051358814/jobs/4919498198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-macos-high-sierra-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051367506/jobs/4919517796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051385090/jobs/4919555478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051411502/jobs/4919612766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051425557/jobs/4919643224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346232527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051404345/jobs/4919597731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346098663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051419233/jobs/4919629529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346089157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3051391067/jobs/4919568019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8346223520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051397971/jobs/4919583291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051402168/jobs/4919592813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051346860/jobs/4919472561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3051394013/jobs/4919574502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,8ec29ce4803807a30ff07b0077d0def6b8861680
diff --git a/csv_reports/nightly-packaging-2022-09-15-0.csv b/csv_reports/nightly-packaging-2022-09-15-0.csv
deleted file mode 100644
index 262b6285d0e..00000000000
--- a/csv_reports/nightly-packaging-2022-09-15-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059004611/jobs/4935870738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368199722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059006610/jobs/4935875578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368360018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059057639/jobs/4935987734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368294341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059025527/jobs/4935917362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059083762/jobs/4936046202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368179133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059088532/jobs/4936056756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368391060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059035503/jobs/4935938777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059041479/jobs/4935951783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8372027069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8373639956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8372656045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8373067683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8373670191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8372529796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8371957136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8374172045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8372436401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8373473624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8373868257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8374171376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8373441788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8371859808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8373971500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8371189444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8372590841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8371770357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8371912697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8374464938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8371765869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8370650431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8371579359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8373457022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8373269658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8371787334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8370975926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8372972983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8373103949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8370813706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8372217054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3059028096/jobs/4935922920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8368219473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059078514/jobs/4936033781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368274049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059044861/jobs/4935959284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3059066068/jobs/4936006405', 'https://github.com/ursacomputing/crossbow/actions/runs/3059066068/jobs/4936006321', 'https://github.com/ursacomputing/crossbow/actions/runs/3059066068/jobs/4936006213', 'https://github.com/ursacomputing/crossbow/actions/runs/3059066068/jobs/4936006094']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3059079978/jobs/4936037081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3059019717/jobs/4936843245', 'https://github.com/ursacomputing/crossbow/actions/runs/3059019717/jobs/4935905230', 'https://github.com/ursacomputing/crossbow/actions/runs/3059019717/jobs/4935905127']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-java-jars,github,{},java-jars/github.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059052729/jobs/4935976420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059086050/jobs/4936051298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-python-sdist,github,{},python-sdist/github.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4937339056', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4937038360', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4937038223', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4937038077', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4937037850', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936623708', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936623564', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936623394', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936623183', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936623079', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936622917', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936622744', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936031154', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936031005', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936030918', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936030775', 'https://github.com/ursacomputing/crossbow/actions/runs/3059074475/jobs/4936024902']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059009985/jobs/4935883141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368325198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059069807/jobs/4936014297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368162191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059030644/jobs/4935928167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8368322060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059000786/jobs/4935862848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059077231/jobs/4936031383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3059021269/jobs/4935908159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059055230/jobs/4935982204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3059056495/jobs/4935984955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-macos-high-sierra-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059040114/jobs/4935948953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-macos-high-sierra-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-macos-high-sierra-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3058998518/jobs/4935858103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-macos-high-sierra-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-macos-high-sierra-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3059007944/jobs/4935878420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-macos-high-sierra-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-macos-high-sierra-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3059094786/jobs/4936070082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-macos-high-sierra-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.13'}",python-wheels/github.osx.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3059017598/jobs/4935899792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8368363975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059067403/jobs/4936009043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368412445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059026538/jobs/4935919761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368416088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3059043521/jobs/4935956530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8368356700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059092357/jobs/4936064536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059075962/jobs/4936028175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059029148/jobs/4935925469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,2749fef975493811a3139ce384cb8c2dec26f80d
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3059064731/jobs/4936003254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-15-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,2749fef975493811a3139ce384cb8c2dec26f80d
diff --git a/csv_reports/nightly-packaging-2022-09-16-0.csv b/csv_reports/nightly-packaging-2022-09-16-0.csv
deleted file mode 100644
index 8a7b7522758..00000000000
--- a/csv_reports/nightly-packaging-2022-09-16-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066551577/jobs/4951853344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389687300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066552584/jobs/4951855437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389664889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066580057/jobs/4951914110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389705541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066561036/jobs/4951873517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066566744/jobs/4951885367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389591810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066550358/jobs/4951851062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389776935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066573719/jobs/4951900092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066558071/jobs/4951867194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8395469035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py310-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8389777554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py310-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/8389789487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8395624231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8394697766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8394425333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8395491257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8395643777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8394886439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8394062316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8395001822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8395316454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8394114816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8394863880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8394631421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py39-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/8389790801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8395525649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8394071060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-osx-arm64-clang-py310,pending,['https://github.com/ursacomputing/crossbow/runs/8389770958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-osx-arm64-clang-py38,pending,['https://github.com/ursacomputing/crossbow/runs/8389752659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8395052493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-osx-clang-py310,pending,['https://github.com/ursacomputing/crossbow/runs/8389748705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8395414446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8395440830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-osx-clang-py38,pending,['https://github.com/ursacomputing/crossbow/runs/8389758999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8395968854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-win-vs2019-py310,pending,['https://github.com/ursacomputing/crossbow/runs/8389781669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-win-vs2019-py37-r40,pending,['https://github.com/ursacomputing/crossbow/runs/8389793875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8395253191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8395586989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8395936486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3066562989/jobs/4951877684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8389613273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066585035/jobs/4951925023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389632720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066533125/jobs/4951813985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3066513913/jobs/4951774319', 'https://github.com/ursacomputing/crossbow/actions/runs/3066513913/jobs/4951774213', 'https://github.com/ursacomputing/crossbow/actions/runs/3066513913/jobs/4951774090', 'https://github.com/ursacomputing/crossbow/actions/runs/3066513913/jobs/4951773953']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3066524092/jobs/4951794868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3066541063/jobs/4952768407', 'https://github.com/ursacomputing/crossbow/actions/runs/3066541063/jobs/4951830233', 'https://github.com/ursacomputing/crossbow/actions/runs/3066541063/jobs/4951830117']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-java-jars,github,{},java-jars/github.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066569838/jobs/4951892073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066545918/jobs/4951841146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-python-sdist,github,{},python-sdist/github.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952890308', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952597970', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952597877', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952597761', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952597641', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952597538', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952597416', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952552832', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952552761', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952552678', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952552613', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952552506', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952552412', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4952552286', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4951778868', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4951778761', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4951778696', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4951778539', 'https://github.com/ursacomputing/crossbow/actions/runs/3066512745/jobs/4951771323']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066547627/jobs/4951845144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8389731614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066538134/jobs/4951823939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389656083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066521734/jobs/4951789969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389599964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066516057/jobs/4951778262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3066528133/jobs/4951803553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3066567797/jobs/4951887500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066546912/jobs/4951843326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066539855/jobs/4951827673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3066554494/jobs/4951859397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066544222/jobs/4951837151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3066555517/jobs/4951861631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3066509899/jobs/4951765310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066590178/jobs/4951935790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389782330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066516976/jobs/4951780223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389583218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066529155/jobs/4951805437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389766077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3066536947/jobs/4951821576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8389740371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066589266/jobs/4951933604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066510715/jobs/4951767134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066561809/jobs/4951875292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3066576635/jobs/4951906259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5e6da78a4f696a638ea93cb69ff89a8e070c0105
diff --git a/csv_reports/nightly-packaging-2022-09-18-0.csv b/csv_reports/nightly-packaging-2022-09-18-0.csv
deleted file mode 100644
index dd0c7e4879f..00000000000
--- a/csv_reports/nightly-packaging-2022-09-18-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076504460/jobs/4970701911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413757312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076472490/jobs/4970651756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413742083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076487172/jobs/4970674865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413705864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076485211/jobs/4970671834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076489751/jobs/4970678845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413716943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076509791/jobs/4970710507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413743386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076496722/jobs/4970690136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076500307/jobs/4970695507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8413979672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8414458151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8413901112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8413975605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8414470564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8414007574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8414261419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8414560124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8414250559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8414000953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8414493139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8414335864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8414238779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8414499903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413992896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8413964185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8414228723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8413987950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8414354606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8413926609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8414559633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8414550731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8414109429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8414318804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8414244561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8414295409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8413843664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8414019127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8414367611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8414111870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8414182059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3076501772/jobs/4970697890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8413755739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076502965/jobs/4970699632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413740325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076482986/jobs/4970668389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3076490537/jobs/4970680199', 'https://github.com/ursacomputing/crossbow/actions/runs/3076490537/jobs/4970680127', 'https://github.com/ursacomputing/crossbow/actions/runs/3076490537/jobs/4970680092', 'https://github.com/ursacomputing/crossbow/actions/runs/3076490537/jobs/4970680060']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3076506193/jobs/4970704651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3076477294/jobs/4970947689', 'https://github.com/ursacomputing/crossbow/actions/runs/3076477294/jobs/4970659423', 'https://github.com/ursacomputing/crossbow/actions/runs/3076477294/jobs/4970659382']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-java-jars,github,{},java-jars/github.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076473610/jobs/4970653499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076484689/jobs/4970671050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-python-sdist,github,{},python-sdist/github.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970952369', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970859218', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970859197', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970859157', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970859113', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970859076', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970859037', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970810103', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970810059', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970810030', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970810008', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970809977', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970809948', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970809912', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970708864', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970708843', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970708805', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970708767', 'https://github.com/ursacomputing/crossbow/actions/runs/3076507181/jobs/4970706302']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076475875/jobs/4970657150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413737258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076502721/jobs/4970699179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413752568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076498092/jobs/4970692157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413739447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3076491549/jobs/4970681682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3076501381/jobs/4970697232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076510251/jobs/4970711285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076499921/jobs/4970694890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3076503668/jobs/4970700698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076487471/jobs/4970675397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3076498494/jobs/4970692828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3076493151/jobs/4970684512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3076478867/jobs/4970661924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076508504/jobs/4970708556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8413732354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076509054/jobs/4970709454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413703244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076480395/jobs/4970664431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413730765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076486049/jobs/4970673220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8413762150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076486707/jobs/4970674093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076499532/jobs/4970694321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076491903/jobs/4970682359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3076500911/jobs/4970696376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-18-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,99179603e6db36b65750bf2d1fbc70545baaffeb
diff --git a/csv_reports/nightly-packaging-2022-09-19-0.csv b/csv_reports/nightly-packaging-2022-09-19-0.csv
deleted file mode 100644
index 7ace9db0a50..00000000000
--- a/csv_reports/nightly-packaging-2022-09-19-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081081809/jobs/4979213613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424059946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081089189/jobs/4979229828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424009452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081032878/jobs/4979104582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424165388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081110324/jobs/4979276767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081044047/jobs/4979130098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424095757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081056625/jobs/4979159133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-centos-9-stream-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8424205078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081066675/jobs/4979180681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081103386/jobs/4979261245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8425621469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8426019452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8425875962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8425304099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8424745215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8425573332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8424904842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8425324545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8425557719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8426308409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424746311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8425961656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8425047579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8426301702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424874338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8426474284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8424650136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8426765474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8426493620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8425792419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8425463913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8425303212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8426228527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8425400343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8425973477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8425069706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8425850581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8425477151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8424491983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8424414654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8426223512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081111662/jobs/4979279334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8424191667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081099308/jobs/4979251987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424113652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081048172/jobs/4979140037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3081096382/jobs/4979246332', 'https://github.com/ursacomputing/crossbow/actions/runs/3081096382/jobs/4979246177', 'https://github.com/ursacomputing/crossbow/actions/runs/3081096382/jobs/4979246098', 'https://github.com/ursacomputing/crossbow/actions/runs/3081096382/jobs/4979246011']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081105538/jobs/4979266774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3081093475/jobs/4980035133', 'https://github.com/ursacomputing/crossbow/actions/runs/3081093475/jobs/4979239553', 'https://github.com/ursacomputing/crossbow/actions/runs/3081093475/jobs/4979239426']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-java-jars,github,{},java-jars/github.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081079442/jobs/4979208960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081050727/jobs/4979145905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-python-sdist,github,{},python-sdist/github.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979927924', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979667356', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979667208', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979667089', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979666988', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979666884', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979666743', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979474942', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979474834', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979474743', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979474649', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979474542', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979474402', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979474264', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979225028', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979224909', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979224824', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979224679', 'https://github.com/ursacomputing/crossbow/actions/runs/3081084528/jobs/4979219088']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081062889/jobs/4979172198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424182853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081035286/jobs/4979109587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424225906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081055530/jobs/4979156676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8424197117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081036597/jobs/4979113349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081073669/jobs/4979196451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081038810/jobs/4979118209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081042013/jobs/4979125613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081037884/jobs/4979115906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081090404/jobs/4979232448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081053558/jobs/4979152596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081087286/jobs/4979225273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081045894/jobs/4979134726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081052559/jobs/4979150257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424006055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081091424/jobs/4979234735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8424085217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081069817/jobs/4979187288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424199802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3081059561/jobs/4979165366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8424171286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081101323/jobs/4979256606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081082852/jobs/4979215736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081094448/jobs/4979241379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3081063849/jobs/4979174234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,59b57287e3e17e84ac41fdf7662fb2be2d4ef9f5
diff --git a/csv_reports/nightly-packaging-2022-09-20-0.csv b/csv_reports/nightly-packaging-2022-09-20-0.csv
deleted file mode 100644
index f24bf1285e1..00000000000
--- a/csv_reports/nightly-packaging-2022-09-20-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088676026/jobs/4995433495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8445744027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088678063/jobs/4995438072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8445856183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088671636/jobs/4995423544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8445835107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088752206/jobs/4995598074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088691394/jobs/4995467598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8445809246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088751004/jobs/4995595572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-centos-9-stream-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8445909217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088739831/jobs/4995571403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088690593/jobs/4995465937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8445782863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8446582639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8447098735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8448108957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8448274433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8446703981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8446481302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8446797639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8448768805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8446952700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8447750991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8446439179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8447339428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8447690323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8448451741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8448686838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8447325872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8446682115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8448041095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8447936790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8447475084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8446783854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8448237077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8448397999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8449112683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8447030772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8447085873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8448364478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8447909370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8447496812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8448268622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088719764/jobs/4995528475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-debian-bookworm-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8445930306'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088721229/jobs/4995531405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-debian-bullseye-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8445886798'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3088728998/jobs/4995548092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3088697324/jobs/4995481202', 'https://github.com/ursacomputing/crossbow/actions/runs/3088697324/jobs/4995481098', 'https://github.com/ursacomputing/crossbow/actions/runs/3088697324/jobs/4995480997', 'https://github.com/ursacomputing/crossbow/actions/runs/3088697324/jobs/4995480915']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3088743211/jobs/4995579012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3088679900/jobs/4996406694', 'https://github.com/ursacomputing/crossbow/actions/runs/3088679900/jobs/4995442659', 'https://github.com/ursacomputing/crossbow/actions/runs/3088679900/jobs/4995442542']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-java-jars,github,{},java-jars/github.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088737824/jobs/4995567119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088700038/jobs/4995486606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-python-sdist,github,{},python-sdist/github.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4996577315', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4996287028', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4996286939', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4996286776', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4996286630', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4996286516', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4996286360', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995891768', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995891661', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995891553', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995891426', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995891306', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995891172', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995890992', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995427290', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995427165', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995427022', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995426899', 'https://github.com/ursacomputing/crossbow/actions/runs/3088670592/jobs/4995421490']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088745789/jobs/4995584145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-ubuntu-bionic-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8445900103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088682220/jobs/4995447480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-ubuntu-focal-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8445954595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088666916/jobs/4995413657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8445800236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088683248/jobs/4995449771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088726356/jobs/4995542955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088680982/jobs/4995444967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3088714717/jobs/4995516872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088724690/jobs/4995538909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088740709/jobs/4995573296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088746702/jobs/4995585976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088729959/jobs/4995550275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3088716679/jobs/4995521455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3088705850/jobs/4995498534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-manylinux2014-cp310-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8445761730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3088684265/jobs/4995451988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8445780221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3088668112/jobs/4995415844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8445811883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3088673461/jobs/4995428262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-manylinux2014-cp39-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8445945970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088674902/jobs/4995430893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088709522/jobs/4995505890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088713444/jobs/4995514504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3088748775/jobs/4995590602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,cd67e5195aee78748e2b646a15a4e9f8b791a776
diff --git a/csv_reports/nightly-packaging-2022-09-21-0.csv b/csv_reports/nightly-packaging-2022-09-21-0.csv
deleted file mode 100644
index 4a5efc245c0..00000000000
--- a/csv_reports/nightly-packaging-2022-09-21-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096412237/jobs/5011935588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8467878636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096407622/jobs/5011925595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8467881115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096419395/jobs/5011950354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8467917774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096403882/jobs/5011917954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096390818/jobs/5011890978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8467893795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096399162/jobs/5011907973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8467907512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096439104/jobs/5011993257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096380651/jobs/5011868637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8468752789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8468871202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8468538757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8469345608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8468862697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8470472958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8469477831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8470617947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8470547717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8470406539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8468807867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8468702273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8469570768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8470216394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8468707879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8469523427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8469447485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8470147277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8468755901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8469198686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8469666061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8470709537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8470221071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8470279196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8470223278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8469101512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8469870303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8469988762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8469758082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8468404948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8468945415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096415333/jobs/5011942153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8468043886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096414262/jobs/5011939940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8468081588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3096366824/jobs/5011839225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3096385536/jobs/5011879475', 'https://github.com/ursacomputing/crossbow/actions/runs/3096385536/jobs/5011879399', 'https://github.com/ursacomputing/crossbow/actions/runs/3096385536/jobs/5011879304', 'https://github.com/ursacomputing/crossbow/actions/runs/3096385536/jobs/5011879212']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3096410618/jobs/5011932007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3096388285/jobs/5012722835', 'https://github.com/ursacomputing/crossbow/actions/runs/3096388285/jobs/5011885473', 'https://github.com/ursacomputing/crossbow/actions/runs/3096388285/jobs/5011885325']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-java-jars,github,{},java-jars/github.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096424064/jobs/5011960004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096393532/jobs/5011897278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-python-sdist,github,{},python-sdist/github.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012653991', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012292013', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012291925', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012291684', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012291541', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012291444', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012291330', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012080267', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012080135', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012080017', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012079939', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012079850', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012079676', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5012079541', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5011855871', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5011855711', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5011855614', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5011855452', 'https://github.com/ursacomputing/crossbow/actions/runs/3096372017/jobs/5011850041']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096400956/jobs/5011911871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8467904788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096416280/jobs/5011944122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8468033399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096422322/jobs/5011956038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8467891650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096378040/jobs/5011862985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096408888/jobs/5011928042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096382563/jobs/5011872687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096420274/jobs/5011952205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096437458/jobs/5011989465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096381655/jobs/5011870609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3096377249/jobs/5011861215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3096428931/jobs/5011970282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3096394967/jobs/5011900003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3096379800/jobs/5011866746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8468045990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096435488/jobs/5011984998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8467877019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096398144/jobs/5011905882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8467975367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096391535/jobs/5011892629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8468038874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096389051/jobs/5011887059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096387205/jobs/5011882930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096429904/jobs/5011972510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3096404869/jobs/5011919845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-21-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d7258aa1ee6e38b3a638b6a87c69659b73bb2ba4
diff --git a/csv_reports/nightly-packaging-2022-09-22-0.csv b/csv_reports/nightly-packaging-2022-09-22-0.csv
deleted file mode 100644
index 86e1fe9b24f..00000000000
--- a/csv_reports/nightly-packaging-2022-09-22-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104085077/jobs/5028150755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489901366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104025325/jobs/5028021528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489720293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104072739/jobs/5028124541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489800096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104047169/jobs/5028069029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104090118/jobs/5028161616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489816620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104058811/jobs/5028093947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489975740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104042353/jobs/5028058794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104055895/jobs/5028087486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8491161615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8490461819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8490317671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8491105741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8492005484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8491342826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8491824073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8490640422'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8490310851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8491963788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8491251259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8491452331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8490517028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8490656045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8492398103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8491107696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8492117794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8492082170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8490404979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8491473632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8491475282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8492475787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8491138344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8491733520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8490848447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8490722060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8491931575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8491908512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8492230868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8491451502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8491018178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104075793/jobs/5028131328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8489857148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104057876/jobs/5028092017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489724702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3104048155/jobs/5028071163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3104015278/jobs/5027999837', 'https://github.com/ursacomputing/crossbow/actions/runs/3104015278/jobs/5027999687', 'https://github.com/ursacomputing/crossbow/actions/runs/3104015278/jobs/5027999565', 'https://github.com/ursacomputing/crossbow/actions/runs/3104015278/jobs/5027999433']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3104067976/jobs/5028113499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3104077988/jobs/5028979623', 'https://github.com/ursacomputing/crossbow/actions/runs/3104077988/jobs/5028136095', 'https://github.com/ursacomputing/crossbow/actions/runs/3104077988/jobs/5028135958']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-java-jars,github,{},java-jars/github.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104034635/jobs/5028042790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104051576/jobs/5028078331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-python-sdist,github,{},python-sdist/github.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028952419', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028639764', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028639596', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028639359', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028639229', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028639095', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028638950', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028434166', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028148773', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028148630', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028148494', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028148353', 'https://github.com/ursacomputing/crossbow/actions/runs/3104081293/jobs/5028143025']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104087886/jobs/5028156778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489730322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3104024356/jobs/5028019314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489826424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104052772/jobs/5028080735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8489807067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104040246/jobs/5028054403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3104044385/jobs/5028063200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104076938/jobs/5028133515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104091906/jobs/5028165432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3104029230/jobs/5028030049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3104054021/jobs/5028083269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104064914/jobs/5028107022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3104066962/jobs/5028111317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3104071913/jobs/5028122720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104074588/jobs/5028128681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8489928610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104026251/jobs/5028023577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489745995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104059941/jobs/5028096131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489748731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3104057034/jobs/5028089898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8489852791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104027298/jobs/5028025792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104060966/jobs/5028098336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104021142/jobs/5028012217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3104031797/jobs/5028035870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-22-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,43e66a928e29a811b0e14f2a2d7ffa9f8290ccbe
diff --git a/csv_reports/nightly-packaging-2022-09-23-0.csv b/csv_reports/nightly-packaging-2022-09-23-0.csv
deleted file mode 100644
index 92dd280723d..00000000000
--- a/csv_reports/nightly-packaging-2022-09-23-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111501130/jobs/5043857608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-almalinux-8-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111446540/jobs/5043739650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-almalinux-9-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111485858/jobs/5043824873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-amazon-linux-2-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111437940/jobs/5043720236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111476227/jobs/5043803597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-centos-8-stream-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111467531/jobs/5043785253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-centos-9-stream-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111459834/jobs/5043768950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111494565/jobs/5043843528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8513725019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8513679383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8513619189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8513687614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8512193342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8512229862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8512989494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8512243951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8512339403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8514345870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8513611853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8512759162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8514029591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8514179733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8514000700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8514116663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8514052444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8513056501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8513088433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8514324955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8513478619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8513460905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8513056124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8512722088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8514638402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8514043603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8513074885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8512201473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8512685952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8513466673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8513110536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111445418/jobs/5043737618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-debian-bookworm-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111499418/jobs/5043854132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-debian-bullseye-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3111461170/jobs/5043772305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3111482180/jobs/5043816504', 'https://github.com/ursacomputing/crossbow/actions/runs/3111482180/jobs/5043816424', 'https://github.com/ursacomputing/crossbow/actions/runs/3111482180/jobs/5043816348', 'https://github.com/ursacomputing/crossbow/actions/runs/3111482180/jobs/5043816252']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3111462109/jobs/5043774039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3111447741/jobs/5044502327', 'https://github.com/ursacomputing/crossbow/actions/runs/3111447741/jobs/5043742074', 'https://github.com/ursacomputing/crossbow/actions/runs/3111447741/jobs/5043741983']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-java-jars,github,{},java-jars/github.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111460423/jobs/5043770514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111490317/jobs/5043834476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-python-sdist,github,{},python-sdist/github.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044672501', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044249727', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044249643', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044249540', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044249453', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044249357', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044249204', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044055875', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044055722', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044055627', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044055499', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044055401', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044055290', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5044055171', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5043841263', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5043841145', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5043840989', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5043840819', 'https://github.com/ursacomputing/crossbow/actions/runs/3111491203/jobs/5043836219']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111480218/jobs/5043812231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-ubuntu-bionic-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111469916/jobs/5043790454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-ubuntu-focal-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111449877/jobs/5043747303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-ubuntu-jammy-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111457173/jobs/5043763444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3111481367/jobs/5043814408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111477026/jobs/5043805388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111466527/jobs/5043783059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111452368/jobs/5043753227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3111453394/jobs/5043755348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3111471684/jobs/5043794124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3111468590/jobs/5043787315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3111487041/jobs/5043827250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111485304/jobs/5043823561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-manylinux2014-cp310-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3111454836/jobs/5043758587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-manylinux2014-cp37-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3111439233/jobs/5043723018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-manylinux2014-cp38-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111478861/jobs/5043808893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-manylinux2014-cp39-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111472658/jobs/5043795943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111493929/jobs/5043841969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111483695/jobs/5043820025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3111448785/jobs/5043745287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-23-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,45cbb5891ba1bf5134e84520d5915838dbfeda25
diff --git a/csv_reports/nightly-packaging-2022-09-24-0.csv b/csv_reports/nightly-packaging-2022-09-24-0.csv
deleted file mode 100644
index 7eb3ef8dded..00000000000
--- a/csv_reports/nightly-packaging-2022-09-24-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117700686/jobs/5056525858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527737397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117679776/jobs/5056492417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527715066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117695449/jobs/5056517185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527745416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117678037/jobs/5056489665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117692784/jobs/5056512838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527727205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117689017/jobs/5056507003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527733478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117698972/jobs/5056523076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117700328/jobs/5056525230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8528017679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8528464559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8527920978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8528356688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8528246356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8528111340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8528165429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8527916882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8528386665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8527939018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8528366004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8527915695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8528264645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8528355717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8528243834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8527931113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8527944689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8528129671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8528359958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8528137665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8528146641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8528004853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8528089579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8528615126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8528446985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8528015578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8528356375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8528273737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8527898468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8528137792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8528028051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117691611/jobs/5056511024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527755802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117680090/jobs/5056493071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527727905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3117693929/jobs/5056514682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3117705487/jobs/5056533456', 'https://github.com/ursacomputing/crossbow/actions/runs/3117705487/jobs/5056533434', 'https://github.com/ursacomputing/crossbow/actions/runs/3117705487/jobs/5056533409', 'https://github.com/ursacomputing/crossbow/actions/runs/3117705487/jobs/5056533386']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3117684523/jobs/5056501032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3117697851/jobs/5056801104', 'https://github.com/ursacomputing/crossbow/actions/runs/3117697851/jobs/5056521127', 'https://github.com/ursacomputing/crossbow/actions/runs/3117697851/jobs/5056521093']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-java-jars,github,{},java-jars/github.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117681250/jobs/5056495318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117703601/jobs/5056530462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-python-sdist,github,{},python-sdist/github.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056818981', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056725225', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056725186', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056725131', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056725105', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056725084', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056725057', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056634934', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056634888', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056634869', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056634845', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056634822', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056634811', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056634782', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056502714', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056502656', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056502626', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056502572', 'https://github.com/ursacomputing/crossbow/actions/runs/3117683961/jobs/5056500223']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117694406/jobs/5056515349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527739447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117706954/jobs/5056535635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527751562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117694762/jobs/5056516037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527723200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117681766/jobs/5056496147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117704894/jobs/5056532320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117678459/jobs/5056490327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117708356/jobs/5056537690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3117706007/jobs/5056534190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3117687986/jobs/5056505688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3117701728/jobs/5056527525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3117706557/jobs/5056535048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117687163/jobs/5056504660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117696272/jobs/5056518405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527753595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3117677295/jobs/5056488439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527711117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117679209/jobs/5056491592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8527721141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117695061/jobs/5056516528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8527714394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117682270/jobs/5056496936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117703982/jobs/5056531062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117677742/jobs/5056489122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3117691887/jobs/5056511541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,356e7f836c145966ebbeb65c3b65d82348e4234e
diff --git a/csv_reports/nightly-packaging-2022-09-25-0.csv b/csv_reports/nightly-packaging-2022-09-25-0.csv
deleted file mode 100644
index 99001116586..00000000000
--- a/csv_reports/nightly-packaging-2022-09-25-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121506964/jobs/5062854859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535238280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121509084/jobs/5062858052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535184458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121527832/jobs/5062887708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535212347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121526141/jobs/5062885067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121512267/jobs/5062863002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535192161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121516941/jobs/5062870334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535197271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121501057/jobs/5062845665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121503001/jobs/5062848720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8535205742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535766776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8535666292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8535542107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8535366723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535462103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8535460935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8535609892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8535240572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8535413141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535492073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8535877387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8535293833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8535605883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535781250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8535404457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8535327660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8535966097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8535934855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8535527459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8535582402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8535504499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8535840364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8535738737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8535891176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8535891919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8535708911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8535723490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8535752824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8535304531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8535358616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121507364/jobs/5062855472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8535206679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121522449/jobs/5062879495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8535220181'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121529976/jobs/5062890854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3121510328/jobs/5062860039', 'https://github.com/ursacomputing/crossbow/actions/runs/3121510328/jobs/5062860021', 'https://github.com/ursacomputing/crossbow/actions/runs/3121510328/jobs/5062859999', 'https://github.com/ursacomputing/crossbow/actions/runs/3121510328/jobs/5062859970']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121509842/jobs/5062859267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3121513786/jobs/5063095060', 'https://github.com/ursacomputing/crossbow/actions/runs/3121513786/jobs/5062865384', 'https://github.com/ursacomputing/crossbow/actions/runs/3121513786/jobs/5062865341']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-java-jars,github,{},java-jars/github.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121525641/jobs/5062884475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121505708/jobs/5062852920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-python-sdist,github,{},python-sdist/github.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5063153722', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5063043820', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5063043811', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5063043794', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5063043777', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5063043760', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5063043748', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062984394', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062984364', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062984333', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062984306', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062984282', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062984263', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062984234', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062871082', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062871019', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062870998', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062870964', 'https://github.com/ursacomputing/crossbow/actions/runs/3121516210/jobs/5062869131']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121511762/jobs/5062862226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535179852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121522791/jobs/5062880051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535203299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121521368/jobs/5062877756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8535217450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121531977/jobs/5062894011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121521046/jobs/5062877208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121515739/jobs/5062868332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121504707/jobs/5062851260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121501834/jobs/5062846888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121514607/jobs/5062866547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121527441/jobs/5062887121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121500677/jobs/5062845056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3121512561/jobs/5062863570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121530641/jobs/5062891819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8535224351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121529080/jobs/5062889519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535230795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121528611/jobs/5062888796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535194262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121514166/jobs/5062865934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8535200468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121502618/jobs/5062848150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121513424/jobs/5062864803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121503481/jobs/5062849411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3121524073/jobs/5062881929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b2871bb4d80695723f8a5ef54c864d9545e6b175
diff --git a/csv_reports/nightly-packaging-2022-09-27-0.csv b/csv_reports/nightly-packaging-2022-09-27-0.csv
deleted file mode 100644
index ae95d49b976..00000000000
--- a/csv_reports/nightly-packaging-2022-09-27-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134229123/jobs/5088520736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8568326269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134257444/jobs/5088581323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8568470424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134210453/jobs/5088480942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8568355892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134195948/jobs/5088449311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134258634/jobs/5088583668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8568447179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134235847/jobs/5088535141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8568376280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134263520/jobs/5088593936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134192386/jobs/5088441831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8568341363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8569057261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8568977304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8569756670'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8570138651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8568942793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8568786985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8570447307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8568905377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8569774680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8569030535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8569409291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8569291944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8568883479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8569647931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8568886054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8569892533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8570620286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8569971060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8569058974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8570322121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8570862234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8569969579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8569963891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8569175871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8570466368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8570202906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8569559532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8569425491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8569806157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8570251658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134234676/jobs/5088532685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8568283900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134232402/jobs/5088527914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8568479494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134187367/jobs/5088430602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3134220870/jobs/5088503957', 'https://github.com/ursacomputing/crossbow/actions/runs/3134220870/jobs/5088503851', 'https://github.com/ursacomputing/crossbow/actions/runs/3134220870/jobs/5088503747', 'https://github.com/ursacomputing/crossbow/actions/runs/3134220870/jobs/5088503659']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134226354/jobs/5088514917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3134225521/jobs/5089370615', 'https://github.com/ursacomputing/crossbow/actions/runs/3134225521/jobs/5088513124', 'https://github.com/ursacomputing/crossbow/actions/runs/3134225521/jobs/5088513018']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-java-jars,github,{},java-jars/github.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134253562/jobs/5088573374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134205543/jobs/5088470826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-python-sdist,github,{},python-sdist/github.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5089583729', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5089265854', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5089265720', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5089265595', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5089265457', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5089265307', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5089265165', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088977862', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088977729', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088977572', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088977460', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088977348', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088977199', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088977056', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088403359', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088403175', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088403029', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088402718', 'https://github.com/ursacomputing/crossbow/actions/runs/3134172525/jobs/5088397956']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134262022/jobs/5088591067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8568453323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134251624/jobs/5088569438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8568310732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3134175896/jobs/5088404987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8568414609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134191339/jobs/5088439176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134211786/jobs/5088483712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134223015/jobs/5088508377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134212626/jobs/5088485713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134236780/jobs/5088537411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134231193/jobs/5088525014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134260796/jobs/5088588621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134214328/jobs/5088488933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134208190/jobs/5088476372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134240395/jobs/5088544971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8568244768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134189848/jobs/5088436310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8568266825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134218747/jobs/5088498894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8568498887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134185838/jobs/5088427647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8568373518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134280169/jobs/5088631199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134227873/jobs/5088517955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134256468/jobs/5088579157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,df7babbffaaece9e090e22509989bc0cea3b2976
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3134238168/jobs/5088540157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-27-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,df7babbffaaece9e090e22509989bc0cea3b2976
diff --git a/csv_reports/nightly-packaging-2022-09-28-0.csv b/csv_reports/nightly-packaging-2022-09-28-0.csv
deleted file mode 100644
index 26273527ca1..00000000000
--- a/csv_reports/nightly-packaging-2022-09-28-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142071786/jobs/5105235813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8591150682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142073226/jobs/5105238752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8591042439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142126254/jobs/5105356969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8591021569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142069858/jobs/5105231075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142139654/jobs/5105387149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8591143613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142083193/jobs/5105260808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8591012178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142096240/jobs/5105290898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142148392/jobs/5105406140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8591848957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8592361171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8593428211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8591555697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8593379940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8593061511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8593194943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8592834050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8592944528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8591804331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8592308398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8591715726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8591734721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8592440586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8592700837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8591522659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8591552947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8591609537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8591892631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8593273816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8593160831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8592639086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8593774037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8593957515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8592203200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8592774698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8593065472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8593735080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8592384008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8592162566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8592701330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142115095/jobs/5105332733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8591138158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142120351/jobs/5105343742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8591087625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142133872/jobs/5105373381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3142147389/jobs/5105404021', 'https://github.com/ursacomputing/crossbow/actions/runs/3142147389/jobs/5105403909', 'https://github.com/ursacomputing/crossbow/actions/runs/3142147389/jobs/5105403788', 'https://github.com/ursacomputing/crossbow/actions/runs/3142147389/jobs/5105403698']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142089833/jobs/5105276319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3142124901/jobs/5106467031', 'https://github.com/ursacomputing/crossbow/actions/runs/3142124901/jobs/5105354017', 'https://github.com/ursacomputing/crossbow/actions/runs/3142124901/jobs/5105353826', 'https://github.com/ursacomputing/crossbow/actions/runs/3142124901/jobs/5105353665']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-java-jars,github,{},java-jars/github.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142158959/jobs/5105429735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142088316/jobs/5105273269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-python-sdist,github,{},python-sdist/github.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5106618200', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5106289917', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5106289802', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5106289668', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5106289552', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5106289452', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5106289360', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105748724', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105748619', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105748498', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105748327', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105748221', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105748083', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105747958', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105228624', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105228424', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105228186', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105228027', 'https://github.com/ursacomputing/crossbow/actions/runs/3142065864/jobs/5105222240']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142155191/jobs/5105421513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8591039163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142079125/jobs/5105252037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8591069218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3142149599/jobs/5105408626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8591075414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142081598/jobs/5105256963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142146088/jobs/5105400940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142067421/jobs/5105225657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142137080/jobs/5105381396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142086399/jobs/5105268157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142104365/jobs/5105308658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142154005/jobs/5105418947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142141935/jobs/5105392313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142074379/jobs/5105241048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142157828/jobs/5105427185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8591153485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142078250/jobs/5105249736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8591160692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142063424/jobs/5105217026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8590974088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142156233/jobs/5105423775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8591177637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142107191/jobs/5105315585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142121278/jobs/5105345874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142130442/jobs/5105365754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3142143513/jobs/5105395358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-28-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,6cccec5fe66c57d327aac1c6c9244aa0326ab3d3
diff --git a/csv_reports/nightly-packaging-2022-09-29-0.csv b/csv_reports/nightly-packaging-2022-09-29-0.csv
deleted file mode 100644
index 0ee25d222cd..00000000000
--- a/csv_reports/nightly-packaging-2022-09-29-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149860808/jobs/5121971649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8613707969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149939980/jobs/5122144330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8613851703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149890387/jobs/5122035689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8613633715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149852055/jobs/5121952107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149872873/jobs/5122000578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8613816534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149853197/jobs/5121954857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8613714065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149926036/jobs/5122112453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149859287/jobs/5121968260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8618172220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8619040106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py310-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/8613801294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8619484133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py310-ppc64le,pending,['https://github.com/ursacomputing/crossbow/runs/8613810640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8619278848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8619773596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8619511570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8619000594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py37-ppc64le,pending,['https://github.com/ursacomputing/crossbow/runs/8613832393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py38-arm64,pending,['https://github.com/ursacomputing/crossbow/runs/8613843153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8619355854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8620970348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8620106295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8620946559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py39-cpu,pending,['https://github.com/ursacomputing/crossbow/runs/8613794709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8619891367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8620814272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8618897315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8620671421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-osx-arm64-clang-py39,pending,['https://github.com/ursacomputing/crossbow/runs/8613771315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8620453227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8620325843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-osx-clang-py37-r41,pending,['https://github.com/ursacomputing/crossbow/runs/8613840017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8618981471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8620390298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8620022250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8620337682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8618675322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-win-vs2019-py38,pending,['https://github.com/ursacomputing/crossbow/runs/8613851105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8618473271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149923322/jobs/5122106645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8613666895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149857051/jobs/5121963005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8613771976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149932997/jobs/5122128030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3149904031/jobs/5122065617', 'https://github.com/ursacomputing/crossbow/actions/runs/3149904031/jobs/5122065500', 'https://github.com/ursacomputing/crossbow/actions/runs/3149904031/jobs/5122065390', 'https://github.com/ursacomputing/crossbow/actions/runs/3149904031/jobs/5122065261']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149935077/jobs/5122133263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3149938560/jobs/5123106369', 'https://github.com/ursacomputing/crossbow/actions/runs/3149938560/jobs/5122141696', 'https://github.com/ursacomputing/crossbow/actions/runs/3149938560/jobs/5122141566', 'https://github.com/ursacomputing/crossbow/actions/runs/3149938560/jobs/5122141408']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-java-jars,github,{},java-jars/github.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149937500/jobs/5122138583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149875216/jobs/5122005287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-python-sdist,github,{},python-sdist/github.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122937241', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122472959', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122472847', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122472737', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122472619', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122472117', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122471810', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122254715', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122254544', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122254412', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122254237', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122254022', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122253874', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122253729', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122017034', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122016930', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122016818', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122016696', 'https://github.com/ursacomputing/crossbow/actions/runs/3149876734/jobs/5122009140']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149850776/jobs/5121949328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8613627700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149866230/jobs/5121985000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8613677693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3149931617/jobs/5122125025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8613668289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149888838/jobs/5122032748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149897133/jobs/5122050441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149906476/jobs/5122070679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149861543/jobs/5121973830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149865390/jobs/5121982837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149855746/jobs/5121960156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149868948/jobs/5121990846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149854298/jobs/5121957297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149902905/jobs/5122062518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149863141/jobs/5121977209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8613833628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149881149/jobs/5122016233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8613694415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149924604/jobs/5122109611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8613690850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149919009/jobs/5122096879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8613755549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149905368/jobs/5122068239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149901841/jobs/5122060242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149916558/jobs/5122091912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3149945707/jobs/5122157346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-29-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,60c938333995f2ac7399085d2ae90d2f5f3e33cd
diff --git a/csv_reports/nightly-packaging-2022-09-30-0.csv b/csv_reports/nightly-packaging-2022-09-30-0.csv
deleted file mode 100644
index b08a65da598..00000000000
--- a/csv_reports/nightly-packaging-2022-09-30-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157445188/jobs/5138324737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8635864179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157467043/jobs/5138373064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8635852401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157446549/jobs/5138327373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8635869743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157441654/jobs/5138316925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157480766/jobs/5138404520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8635742396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157482089/jobs/5138406871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8635693025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157493273/jobs/5138431825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157519504/jobs/5138486048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8636140909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8637015901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8636145972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8636603630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8637456120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8637801610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8636912902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8637668878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8637680005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8637390237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8636939823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8637242790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8637066785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8637110520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8636309860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8637593799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8636497240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8637267258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8637219625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8636488468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8636575077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8637745981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8637965493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8636654969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8636722012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8636693250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8636009367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8636097066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8636453402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8637362207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8635977975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157500106/jobs/5138447869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8635861378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157509120/jobs/5138463945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8635690074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157440323/jobs/5138314276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3157466143/jobs/5138371209', 'https://github.com/ursacomputing/crossbow/actions/runs/3157466143/jobs/5138371136', 'https://github.com/ursacomputing/crossbow/actions/runs/3157466143/jobs/5138371054', 'https://github.com/ursacomputing/crossbow/actions/runs/3157466143/jobs/5138370981']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157523586/jobs/5138494653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3157514967/jobs/5139440400', 'https://github.com/ursacomputing/crossbow/actions/runs/3157514967/jobs/5138476564', 'https://github.com/ursacomputing/crossbow/actions/runs/3157514967/jobs/5138476405', 'https://github.com/ursacomputing/crossbow/actions/runs/3157514967/jobs/5138476256']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-java-jars,github,{},java-jars/github.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157483119/jobs/5138408894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157462790/jobs/5138363900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-python-sdist,github,{},python-sdist/github.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5139223743', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138918664', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138918537', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138918436', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138918338', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138918229', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138918091', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138741663', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138741531', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138741440', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138741305', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138741185', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138741080', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138740959', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138484920', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138484834', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138484719', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138484537', 'https://github.com/ursacomputing/crossbow/actions/runs/3157516485/jobs/5138479575']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157438464/jobs/5138310168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8635726997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157496187/jobs/5138438828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8635772341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3157477365/jobs/5138397242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8635778046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157499059/jobs/5138445595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157475440/jobs/5138392764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157476572/jobs/5138395178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157436733/jobs/5138306905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157470968/jobs/5138382608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157511074/jobs/5138468137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157459540/jobs/5138357142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157447586/jobs/5138329841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157492324/jobs/5138429570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157520619/jobs/5138488483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8635714326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157494346/jobs/5138434301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8635808072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157485299/jobs/5138413590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8635810342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157443355/jobs/5138320161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8635722314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157505007/jobs/5138456254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157456548/jobs/5138350174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157464950/jobs/5138368223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3157479882/jobs/5138402148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-09-30-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d77176e4b95fb4d8026ea9dd9e7e4239b8c17a1d
diff --git a/csv_reports/nightly-packaging-2022-10-01-0.csv b/csv_reports/nightly-packaging-2022-10-01-0.csv
deleted file mode 100644
index 171b3e65f2f..00000000000
--- a/csv_reports/nightly-packaging-2022-10-01-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163896378/jobs/5151805265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8653417600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163881597/jobs/5151780455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8653465004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163886254/jobs/5151788126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8653490313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163870939/jobs/5151763565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163880059/jobs/5151777933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8653450925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163879455/jobs/5151777050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8653460244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163876592/jobs/5151772462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163897725/jobs/5151807703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8653746960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8653976029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8653658938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8653897122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8653809894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8653993992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8653819445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8654187830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8653617684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8653905379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8653718158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8653598671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8654150679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8653684403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8653828176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/8654151569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8653615598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8653762850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8654135027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8654058032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8653679970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8653731440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8654206880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8653723124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8653909729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8653988897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8654005111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8654036812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8654083156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8653988748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8653846187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163865460/jobs/5151753967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8653434919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163888773/jobs/5151792431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8653451693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163882394/jobs/5151781917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3163880882/jobs/5151779477', 'https://github.com/ursacomputing/crossbow/actions/runs/3163880882/jobs/5151779432', 'https://github.com/ursacomputing/crossbow/actions/runs/3163880882/jobs/5151779394', 'https://github.com/ursacomputing/crossbow/actions/runs/3163880882/jobs/5151779356']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163887391/jobs/5151789857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3163872105/jobs/5152085156', 'https://github.com/ursacomputing/crossbow/actions/runs/3163872105/jobs/5151765701', 'https://github.com/ursacomputing/crossbow/actions/runs/3163872105/jobs/5151765645', 'https://github.com/ursacomputing/crossbow/actions/runs/3163872105/jobs/5151765599']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-java-jars,github,{},java-jars/github.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163892516/jobs/5151798782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163874159/jobs/5151768621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-python-sdist,github,{},python-sdist/github.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5152101114', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151990430', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151990392', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151990348', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151990314', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151990276', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151990245', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151906014', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151905966', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151905916', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151905853', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151905809', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151905758', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151905699', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151803162', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151803123', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151803094', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151803044', 'https://github.com/ursacomputing/crossbow/actions/runs/3163893427/jobs/5151800312']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163875782/jobs/5151770914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8653419080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163895585/jobs/5151803881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8653441493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3163887706/jobs/5151790531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8653426987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163884587/jobs/5151785120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163862961/jobs/5151749438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163863975/jobs/5151751420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163880439/jobs/5151778613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163897187/jobs/5151806798'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163868971/jobs/5151760123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163890098/jobs/5151794617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163869224/jobs/5151760664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163867648/jobs/5151757702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163864608/jobs/5151752423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8653430516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163886700/jobs/5151788818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8653446189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163883897/jobs/5151784151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8653459585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163895861/jobs/5151804419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8653442907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163894100/jobs/5151801414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163889572/jobs/5151793737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163898163/jobs/5151808368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3163866525/jobs/5151755917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4dfa61767095b42822293f29b76e97474dbd3aa3
diff --git a/csv_reports/nightly-packaging-2022-10-02-0.csv b/csv_reports/nightly-packaging-2022-10-02-0.csv
deleted file mode 100644
index f2d4a82c067..00000000000
--- a/csv_reports/nightly-packaging-2022-10-02-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167960368/jobs/5158819161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661777018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167942558/jobs/5158790160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661769622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167957406/jobs/5158814476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661802250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167925835/jobs/5158762718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167951098/jobs/5158804023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661764660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167928720/jobs/5158767425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661803894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167944585/jobs/5158793273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167940151/jobs/5158786458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8662106961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8662638566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8662495452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8661946928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8661973166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8662012419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8662347120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8662054606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8661955859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8662290238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8662252408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8662181156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8662509793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8662024434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8662086919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8662341793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8662527006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8662484481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8662083644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8662264898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8662081010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8662406041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8662729506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8662349283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8662661530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8662276799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8662207653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8662414867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8661944855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8662325517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8662084187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167952140/jobs/5158805850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661775045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167959864/jobs/5158818355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661767604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3167946835/jobs/5158797256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3167958917/jobs/5158816926', 'https://github.com/ursacomputing/crossbow/actions/runs/3167958917/jobs/5158816907', 'https://github.com/ursacomputing/crossbow/actions/runs/3167958917/jobs/5158816872', 'https://github.com/ursacomputing/crossbow/actions/runs/3167958917/jobs/5158816838']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3167935542/jobs/5158779023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3167964046/jobs/5159130140', 'https://github.com/ursacomputing/crossbow/actions/runs/3167964046/jobs/5158825083', 'https://github.com/ursacomputing/crossbow/actions/runs/3167964046/jobs/5158825033', 'https://github.com/ursacomputing/crossbow/actions/runs/3167964046/jobs/5158824972']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-java-jars,github,{},java-jars/github.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167954639/jobs/5158809965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167950279/jobs/5158802602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-python-sdist,github,{},python-sdist/github.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5159114964', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158930817', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158930764', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158930719', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158930675', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158930642', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158930624', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158863425', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158863407', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158863391', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158863361', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158863335', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158863309', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158863275', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158773572', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158773532', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158773485', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158773434', 'https://github.com/ursacomputing/crossbow/actions/runs/3167931113/jobs/5158771716']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167941540/jobs/5158788584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661759924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167938584/jobs/5158783973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661742671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3167937139/jobs/5158781478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661759092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167948214/jobs/5158799319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167932065/jobs/5158773664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167928205/jobs/5158766627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167936446/jobs/5158780372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3167950708/jobs/5158803327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3167930470/jobs/5158770578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3167948872/jobs/5158800320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3167925200/jobs/5158761778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3167939789/jobs/5158785884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167931487/jobs/5158772558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661809527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167962335/jobs/5158822063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661801490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167926800/jobs/5158764370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8661797018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167926090/jobs/5158763267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8661782424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167934884/jobs/5158778080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167939227/jobs/5158784926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167933938/jobs/5158776557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3167932665/jobs/5158774504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-02-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
diff --git a/csv_reports/nightly-packaging-2022-10-03-0.csv b/csv_reports/nightly-packaging-2022-10-03-0.csv
deleted file mode 100644
index 24c77488ffe..00000000000
--- a/csv_reports/nightly-packaging-2022-10-03-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172802729/jobs/5167688090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672800793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172804938/jobs/5167693010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672663123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172792289/jobs/5167664721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672665036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172824937/jobs/5167736026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172786180/jobs/5167650734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672694266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172781506/jobs/5167639928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672716444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172815824/jobs/5167716941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172806857/jobs/5167697585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8674272907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8675135926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8673500054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8674411520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8675018230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8673611387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8675376915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8675173213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8674258289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8673705803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8674310719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8673826493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8674563360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8673503122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8674742503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8675131944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8673405419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8674901384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8674744917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8674515520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8675109084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8673813180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8676225922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8674193956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8673816519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8674625900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8674218849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8674985511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8673205942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8673522348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8673115216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172833841/jobs/5167755281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-debian-bookworm-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172776523/jobs/5167626437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672688644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3172803605/jobs/5167690252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3172793926/jobs/5167669090', 'https://github.com/ursacomputing/crossbow/actions/runs/3172793926/jobs/5167669015', 'https://github.com/ursacomputing/crossbow/actions/runs/3172793926/jobs/5167668929', 'https://github.com/ursacomputing/crossbow/actions/runs/3172793926/jobs/5167668847']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3172827144/jobs/5167740655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3172796174/jobs/5168650287', 'https://github.com/ursacomputing/crossbow/actions/runs/3172796174/jobs/5167673703', 'https://github.com/ursacomputing/crossbow/actions/runs/3172796174/jobs/5167673600', 'https://github.com/ursacomputing/crossbow/actions/runs/3172796174/jobs/5167673476']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-java-jars,github,{},java-jars/github.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172796989/jobs/5167675560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172812117/jobs/5167708335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-python-sdist,github,{},python-sdist/github.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5168499751', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5168167908', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5168167791', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5168167676', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5168167538', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5168167456', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5168167306', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167932401', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167932256', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167932112', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167931993', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167931850', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167931758', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167931614', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167713992', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167713883', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167713708', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167713557', 'https://github.com/ursacomputing/crossbow/actions/runs/3172810738/jobs/5167705435']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172769209/jobs/5167611556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672787249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172775263/jobs/5167624381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672877587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172820426/jobs/5167726580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8672639304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172842794/jobs/5167774354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3172819091/jobs/5167723856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3172837103/jobs/5167762409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172782821/jobs/5167643128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172800398/jobs/5167682969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3172825915/jobs/5167738281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3172784088/jobs/5167646103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3172828224/jobs/5167743261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3172798137/jobs/5167677810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172840715/jobs/5167769682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672674032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172812813/jobs/5167710300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672689408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172761812/jobs/5167595895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8672809035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3172760811/jobs/5167593658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8672852453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172791077/jobs/5167662049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172835759/jobs/5167759544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172808366/jobs/5167700522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3172822634/jobs/5167731436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-03-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,89c0214fa43f8d1bf2e19e3bae0fc3009df51e15
diff --git a/csv_reports/nightly-packaging-2022-10-04-0.csv b/csv_reports/nightly-packaging-2022-10-04-0.csv
deleted file mode 100644
index 43489c40702..00000000000
--- a/csv_reports/nightly-packaging-2022-10-04-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180730422/jobs/5184652408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695502587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180674016/jobs/5184530849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695604427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180711420/jobs/5184611130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695653152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180682503/jobs/5184549748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180692617/jobs/5184572210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695507753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180661858/jobs/5184504214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695431917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180698240/jobs/5184583713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180731489/jobs/5184654816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8695396416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8697831219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8696894549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8697290563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8696149054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8696909383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8696467023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8697725054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8696489777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8696102761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8696146318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8696294134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8696152369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8696084042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8697405026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8697998476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/8696652288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/8696043439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8696460968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8698055440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8697841071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8697386220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8697667859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8697526526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8698434046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8697608584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8697031664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8696936460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8695863920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8696586237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8697774392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3180679037/jobs/5184542144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8695408321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180687173/jobs/5184560125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695548920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180680266/jobs/5184544776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3180724774/jobs/5184640568', 'https://github.com/ursacomputing/crossbow/actions/runs/3180724774/jobs/5184640416', 'https://github.com/ursacomputing/crossbow/actions/runs/3180724774/jobs/5184640307', 'https://github.com/ursacomputing/crossbow/actions/runs/3180724774/jobs/5184640209']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3180723596/jobs/5184637259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3180664628/jobs/5185584922', 'https://github.com/ursacomputing/crossbow/actions/runs/3180664628/jobs/5184509815', 'https://github.com/ursacomputing/crossbow/actions/runs/3180664628/jobs/5184509682', 'https://github.com/ursacomputing/crossbow/actions/runs/3180664628/jobs/5184509555']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-java-jars,github,{},java-jars/github.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180669057/jobs/5184519700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180658549/jobs/5184496524'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-python-sdist,github,{},python-sdist/github.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5186087137', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185768163', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185768053', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185767919', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185767809', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185767682', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185767563', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185164281', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185164091', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185163960', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185163874', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185163769', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185163645', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5185163524', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5184675960', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5184675838', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5184675684', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5184675486', 'https://github.com/ursacomputing/crossbow/actions/runs/3180738766/jobs/5184669425']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180748490/jobs/5184690198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695482503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180751906/jobs/5184697829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695464727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180689123/jobs/5184564627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695520195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180665545/jobs/5184511725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3180683947/jobs/5184552504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180706394/jobs/5184600869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180718506/jobs/5184626403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3180701820/jobs/5184591498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3180740906/jobs/5184674188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3180691340/jobs/5184569369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3180690509/jobs/5184567413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3180735613/jobs/5184662767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180717210/jobs/5184623772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695635671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3180681064/jobs/5184546925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695399188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180675743/jobs/5184534069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8695612180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180709055/jobs/5184606486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8695530406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180666790/jobs/5184514469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180660818/jobs/5184501598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180719591/jobs/5184628795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,466018084861f86a9171803c6d689e9c1c1efb5a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3180699502/jobs/5184586508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-04-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,466018084861f86a9171803c6d689e9c1c1efb5a
diff --git a/csv_reports/nightly-packaging-2022-10-06-0.csv b/csv_reports/nightly-packaging-2022-10-06-0.csv
deleted file mode 100644
index f224600cee3..00000000000
--- a/csv_reports/nightly-packaging-2022-10-06-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195814152/jobs/5216940977'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8738966857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195784637/jobs/5216875539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8738931250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195798858/jobs/5216907142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8738809048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195802250/jobs/5216914581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195767484/jobs/5216835904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8738992307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195835828/jobs/5216990368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8739068321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195764202/jobs/5216828336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195809483/jobs/5216930540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8738873346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8741374238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8739637529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8741337066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8741840191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8739789963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8740290647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8740216845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8740883725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8741092953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8740335347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8739480189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8740815956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8740749080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8740522015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8740907782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8741562900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8740081532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8741162771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8741069266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8739862117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8740317442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8742422970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8740607459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8740088511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8742095775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8739354867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8739370023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8739405063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8741194418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8740808764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195782408/jobs/5216871052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8738999086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195762798/jobs/5216825359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8739042525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195796047/jobs/5216901182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3195770652/jobs/5216843926', 'https://github.com/ursacomputing/crossbow/actions/runs/3195770652/jobs/5216843809', 'https://github.com/ursacomputing/crossbow/actions/runs/3195770652/jobs/5216843699', 'https://github.com/ursacomputing/crossbow/actions/runs/3195770652/jobs/5216843558']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3195766458/jobs/5216833697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3195797300/jobs/5217774731', 'https://github.com/ursacomputing/crossbow/actions/runs/3195797300/jobs/5216904322', 'https://github.com/ursacomputing/crossbow/actions/runs/3195797300/jobs/5216904171', 'https://github.com/ursacomputing/crossbow/actions/runs/3195797300/jobs/5216904015']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-java-jars,github,{},java-jars/github.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195804329/jobs/5216919544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195828127/jobs/5216972757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-python-sdist,github,{},python-sdist/github.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217797201', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217455315', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217455199', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217455086', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217454979', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217454878', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217454750', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217229635', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217229541', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217229438', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217229347', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217229253', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217229168', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5217229022', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5216935969', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5216935824', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5216935707', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5216935569', 'https://github.com/ursacomputing/crossbow/actions/runs/3195807890/jobs/5216927187']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195789508/jobs/5216886276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8739049114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195790570/jobs/5216888999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8738874792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195833935/jobs/5216986005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8738886912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195810396/jobs/5216932821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3195822579/jobs/5216959766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195823705/jobs/5216962521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195819996/jobs/5216954130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3195758857/jobs/5216816224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3195829561/jobs/5216975712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195776146/jobs/5216856178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3195772080/jobs/5216846671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3195774018/jobs/5216851305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195751441/jobs/5216799123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8739071647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3195824619/jobs/5216964647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8738957312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195830865/jobs/5216978569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8738934346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195827301/jobs/5216970430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8738835189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195816795/jobs/5216946638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195769725/jobs/5216841223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195781213/jobs/5216868187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3195779712/jobs/5216864857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-06-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d31f3d9439d94803f1dc5900e4df8607226fa925
diff --git a/csv_reports/nightly-packaging-2022-10-07-0.csv b/csv_reports/nightly-packaging-2022-10-07-0.csv
deleted file mode 100644
index ae0b8f81ef9..00000000000
--- a/csv_reports/nightly-packaging-2022-10-07-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203449607/jobs/5233557578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8761400154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203487936/jobs/5233642582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8761415600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203490955/jobs/5233648967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8761431076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203480496/jobs/5233626337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203484922/jobs/5233635662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8761393546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203466455/jobs/5233594253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8761282780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203432873/jobs/5233522062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203447553/jobs/5233553340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8762414949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8763296744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8763272956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8762709724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8762133770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8763075752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8763129309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8762002021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8762049359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8762129631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8763462240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8763796044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8762578592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8763178613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8763296320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8763797660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8761960455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8762341011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8764066755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8762363099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8763938401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8763011407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8763753369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8763872750'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8762584756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8762544080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8763448566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8763650976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8761800938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8762517589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8761645206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203471975/jobs/5233606410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8761363457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203437348/jobs/5233531033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8761478680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203421295/jobs/5233496357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3203452748/jobs/5233564704', 'https://github.com/ursacomputing/crossbow/actions/runs/3203452748/jobs/5233564596', 'https://github.com/ursacomputing/crossbow/actions/runs/3203452748/jobs/5233564486', 'https://github.com/ursacomputing/crossbow/actions/runs/3203452748/jobs/5233564354']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3203422220/jobs/5233498447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3203413032/jobs/5234428185', 'https://github.com/ursacomputing/crossbow/actions/runs/3203413032/jobs/5233477781', 'https://github.com/ursacomputing/crossbow/actions/runs/3203413032/jobs/5233477666', 'https://github.com/ursacomputing/crossbow/actions/runs/3203413032/jobs/5233477519']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-java-jars,github,{},java-jars/github.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203468665/jobs/5233599183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203488578/jobs/5233644296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-python-sdist,github,{},python-sdist/github.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5234407019', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233943975', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233943883', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233943790', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233943668', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233943532', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233943412', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233791175', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233791081', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233790984', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233790883', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233790755', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233790677', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233790558', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233520266', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233520161', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233520077', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233519940', 'https://github.com/ursacomputing/crossbow/actions/runs/3203429820/jobs/5233515017']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203473549/jobs/5233610381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8761360215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203444524/jobs/5233546662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8761250947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203456056/jobs/5233571363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8761332609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203467134/jobs/5233595914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3203454721/jobs/5233569028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203460254/jobs/5233580603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203482386/jobs/5233630465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203478419/jobs/5233621326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3203450736/jobs/5233559931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203470457/jobs/5233603354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3203474991/jobs/5233613498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3203426392/jobs/5233507414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3203439098/jobs/5233535231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8761257095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3203409892/jobs/5233470614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8761317120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203411648/jobs/5233474505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8761418144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203423102/jobs/5233500532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8761354628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203414099/jobs/5233480184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203462337/jobs/5233585183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203477121/jobs/5233618222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3203432020/jobs/5233519937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-07-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,c29ca51f44eaf41c3a2f6f72e3e23a7b428211c2
diff --git a/csv_reports/nightly-packaging-2022-10-08-0.csv b/csv_reports/nightly-packaging-2022-10-08-0.csv
deleted file mode 100644
index 44964ed3df6..00000000000
--- a/csv_reports/nightly-packaging-2022-10-08-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209808633/jobs/5246812408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8779021099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209780825/jobs/5246765398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8778989694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209788392/jobs/5246778126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8779020141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209811399/jobs/5246817246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209806816/jobs/5246809266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8779007689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209784961/jobs/5246772746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8778995491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209817028/jobs/5246826528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209791947/jobs/5246783309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8779606717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8779826119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8779347050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8779594830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8779752086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8779730451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8779225586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8779722463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8779561120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8779514679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8779443178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8779457000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8779788605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8779196757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8779225363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8779208108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8779755832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8779243061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8779229329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8779230596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8779908451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8779375823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8779629162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8779626261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8779565271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8779447880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8779548190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8779493530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8779329328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8779114712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8779140304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209813303/jobs/5246820533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8778983712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209817418/jobs/5246827207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8778977319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209786224/jobs/5246774627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3209781327/jobs/5246766360', 'https://github.com/ursacomputing/crossbow/actions/runs/3209781327/jobs/5246766312', 'https://github.com/ursacomputing/crossbow/actions/runs/3209781327/jobs/5246766278', 'https://github.com/ursacomputing/crossbow/actions/runs/3209781327/jobs/5246766242']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3209808126/jobs/5246811479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3209790424/jobs/5247118464', 'https://github.com/ursacomputing/crossbow/actions/runs/3209790424/jobs/5246781295', 'https://github.com/ursacomputing/crossbow/actions/runs/3209790424/jobs/5246781248', 'https://github.com/ursacomputing/crossbow/actions/runs/3209790424/jobs/5246781193']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-java-jars,github,{},java-jars/github.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209782701/jobs/5246768493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209802201/jobs/5246801009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-python-sdist,github,{},python-sdist/github.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5247064423', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246937137', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246937103', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246937058', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246937027', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246936992', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246936952', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246884677', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246884637', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246884593', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246884546', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246884502', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246884442', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246884380', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246794036', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246793996', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246793946', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246793895', 'https://github.com/ursacomputing/crossbow/actions/runs/3209796295/jobs/5246790685']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209799276/jobs/5246796040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8778996271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209781850/jobs/5246767119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8779004150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209784535/jobs/5246771696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8778994534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209810929/jobs/5246816554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3209801143/jobs/5246799230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3209797862/jobs/5246793424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209792569/jobs/5246784181'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3209800794/jobs/5246798559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209793922/jobs/5246786506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3209810032/jobs/5246814894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3209796924/jobs/5246791766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209783157/jobs/5246769249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209787092/jobs/5246776087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8778978233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209792933/jobs/5246784867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8778986806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209795302/jobs/5246788990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8778996951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209791025/jobs/5246781890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8778998899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209812791/jobs/5246819771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209799777/jobs/5246796887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209812315/jobs/5246818914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3209788975/jobs/5246778939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-08-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,12667cd06046070c397ea4b90193f3f5ec3fa997
diff --git a/csv_reports/nightly-packaging-2022-10-09-0.csv b/csv_reports/nightly-packaging-2022-10-09-0.csv
deleted file mode 100644
index 1a786836222..00000000000
--- a/csv_reports/nightly-packaging-2022-10-09-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213518535/jobs/5253246228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8786653902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213525540/jobs/5253258518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8786649107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213540168/jobs/5253282907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8786601264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213522765/jobs/5253253549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213520251/jobs/5253249331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8786647262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213518812/jobs/5253246846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8786637588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213538003/jobs/5253279550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213517248/jobs/5253244008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8786986371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8786867235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8787050570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8787047491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8786930142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8787141361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8787346646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8787325531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8786816616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8787213193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8787350787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8786840413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8787216879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8786896435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8787566909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8787072752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8787076727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8787117900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8787284626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8786807745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8787314525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8787285144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8787505499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8787322665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8786994408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8786970479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8786915468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8786859386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8787326915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8786745695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8787329001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213510772/jobs/5253233963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8786610877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213536139/jobs/5253276894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8786628844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213530695/jobs/5253267499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3213508802/jobs/5253230793', 'https://github.com/ursacomputing/crossbow/actions/runs/3213508802/jobs/5253230774', 'https://github.com/ursacomputing/crossbow/actions/runs/3213508802/jobs/5253230753', 'https://github.com/ursacomputing/crossbow/actions/runs/3213508802/jobs/5253230725']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3213525919/jobs/5253259192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3213507173/jobs/5253581764', 'https://github.com/ursacomputing/crossbow/actions/runs/3213507173/jobs/5253227630', 'https://github.com/ursacomputing/crossbow/actions/runs/3213507173/jobs/5253227607', 'https://github.com/ursacomputing/crossbow/actions/runs/3213507173/jobs/5253227557']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-java-jars,github,{},java-jars/github.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213516350/jobs/5253242441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213511410/jobs/5253234991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-python-sdist,github,{},python-sdist/github.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253545874', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253390629', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253390620', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253390602', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253390583', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253390555', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253390524', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253291419', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253222339', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253222307', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253222282', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253222234', 'https://github.com/ursacomputing/crossbow/actions/runs/3213502883/jobs/5253220556']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213513223/jobs/5253237635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8786658237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213532093/jobs/5253269875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8786599903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213512853/jobs/5253237055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8786650982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213524158/jobs/5253255954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213503816/jobs/5253222098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213525156/jobs/5253257709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213515051/jobs/5253240547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3213517889/jobs/5253245103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213526508/jobs/5253260114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213504706/jobs/5253223600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3213529565/jobs/5253265791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3213540548/jobs/5253283683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213502154/jobs/5253219373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8786644706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213538962/jobs/5253281013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8786629997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213523074/jobs/5253254174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8786660992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3213533071/jobs/5253271476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8786617606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213539545/jobs/5253281957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213538679/jobs/5253280503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3213522365/jobs/5253252852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3213516935/jobs/5253243401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-09-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,48c6738ec2fd69c90c49ed38a580bf48a578af0a
diff --git a/csv_reports/nightly-packaging-2022-10-10-0.csv b/csv_reports/nightly-packaging-2022-10-10-0.csv
deleted file mode 100644
index 41a30bcbea9..00000000000
--- a/csv_reports/nightly-packaging-2022-10-10-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217970867/jobs/5261575475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8796931947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218008749/jobs/5261658610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8796882941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3217969864/jobs/5261573056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8797060905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218038716/jobs/5261724192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218035431/jobs/5261716972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8797013819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218032441/jobs/5261709980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8796940530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218030031/jobs/5261704384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217966660/jobs/5261566256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8797770658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8797855590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8798664033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8799252334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8798590267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8799349772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8797601396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8798812676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8799392009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8799554781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8797796520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8797617141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8798891108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8797724501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8798976273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8797680769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8799132310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8798681771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8798434210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8798783276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8799552430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8798202823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8800359065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8800460068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8798252864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8799543015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8797468148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8798078084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8799300299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8798228069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8797212531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217956671/jobs/5261543759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8797035929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218005490/jobs/5261651587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8796852235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217992241/jobs/5261622223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3217983531/jobs/5261603474', 'https://github.com/ursacomputing/crossbow/actions/runs/3217983531/jobs/5261603370', 'https://github.com/ursacomputing/crossbow/actions/runs/3217983531/jobs/5261603287', 'https://github.com/ursacomputing/crossbow/actions/runs/3217983531/jobs/5261603166']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3218036751/jobs/5261719484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3218018155/jobs/5262634336', 'https://github.com/ursacomputing/crossbow/actions/runs/3218018155/jobs/5261679335', 'https://github.com/ursacomputing/crossbow/actions/runs/3218018155/jobs/5261679234', 'https://github.com/ursacomputing/crossbow/actions/runs/3218018155/jobs/5261679139']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-java-jars,github,{},java-jars/github.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218013971/jobs/5261669927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217980445/jobs/5261596477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-python-sdist,github,{},python-sdist/github.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5262530358', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5262214281', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5262214171', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5262214055', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5262213919', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5262213808', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5262213645', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261990010', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261989881', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261989796', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261989709', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261989619', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261989270', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261989095', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261707266', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261707135', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261706969', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261706797', 'https://github.com/ursacomputing/crossbow/actions/runs/3218028329/jobs/5261700737']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218001123/jobs/5261641982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8796967986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217977285/jobs/5261589559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8796974473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217985739/jobs/5261607926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8796943271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217962104/jobs/5261555724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3218020447/jobs/5261684234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218017083/jobs/5261676892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217979770/jobs/5261594482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3217996135/jobs/5261631052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3217968744/jobs/5261570823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3218019436/jobs/5261681799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3218026998/jobs/5261697884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217981564/jobs/5261598939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217975201/jobs/5261585066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8796937982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217961005/jobs/5261553210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8796980618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3217987582/jobs/5261612298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8796829954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3217994311/jobs/5261626660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8796990002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218034403/jobs/5261714440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218029107/jobs/5261702513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3217958862/jobs/5261548530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3218022667/jobs/5261688653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-10-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d8f3946051dc0d4215a82e7d859491dbb8034ac9
diff --git a/csv_reports/nightly-packaging-2022-10-11-0.csv b/csv_reports/nightly-packaging-2022-10-11-0.csv
deleted file mode 100644
index 14be73bb667..00000000000
--- a/csv_reports/nightly-packaging-2022-10-11-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225380431/jobs/5277616756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8818251297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225433836/jobs/5277734304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8818274510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225441559/jobs/5277752097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8818260861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225421746/jobs/5277707814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225398244/jobs/5277656166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8818295417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225373147/jobs/5277602122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8818389209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225462104/jobs/5277799222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225447434/jobs/5277766038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8821510500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8824967016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8821040763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8823114896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8824029690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8822890604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8823305631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8823241352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8822153815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8823944574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8824348095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8823604457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8822898508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8824326051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8820964619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8824119484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8821996721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8822803661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8822428515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8823768729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8821451323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8822391997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/8825080692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/8822607761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8822787835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8822024095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8823281605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8824214372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8824149434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8821346082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,06c99f7ae1c944b47df23892652a478fee095422
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8820878109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,06c99f7ae1c944b47df23892652a478fee095422
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225420343/jobs/5277704783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8818406129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225443924/jobs/5277757388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8818343594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225457419/jobs/5277788708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,06c99f7ae1c944b47df23892652a478fee095422
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3225411998/jobs/5277686888', 'https://github.com/ursacomputing/crossbow/actions/runs/3225411998/jobs/5277686791', 'https://github.com/ursacomputing/crossbow/actions/runs/3225411998/jobs/5277686683', 'https://github.com/ursacomputing/crossbow/actions/runs/3225411998/jobs/5277686589']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,06c99f7ae1c944b47df23892652a478fee095422
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3225392260/jobs/5277642772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,06c99f7ae1c944b47df23892652a478fee095422
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3225454722/jobs/5278850889', 'https://github.com/ursacomputing/crossbow/actions/runs/3225454722/jobs/5277782830', 'https://github.com/ursacomputing/crossbow/actions/runs/3225454722/jobs/5277782704', 'https://github.com/ursacomputing/crossbow/actions/runs/3225454722/jobs/5277782568']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-java-jars,github,{},java-jars/github.yml,06c99f7ae1c944b47df23892652a478fee095422
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225378019/jobs/5277612124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,06c99f7ae1c944b47df23892652a478fee095422
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225376656/jobs/5277609487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-python-sdist,github,{},python-sdist/github.yml,06c99f7ae1c944b47df23892652a478fee095422
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5279183175', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5278904582', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5278904475', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5278904370', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5278904264', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5278904130', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5278903960', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5278053203', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277936316', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277936153', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277936035', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277935870', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277935745', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277935577', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277935424', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277935275', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277660914', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277660794', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277660663', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277660517', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277660340', 'https://github.com/ursacomputing/crossbow/actions/runs/3225397138/jobs/5277653747']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,06c99f7ae1c944b47df23892652a478fee095422
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225369112/jobs/5277593012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8818423363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225402229/jobs/5277664921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8818426189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225385198/jobs/5277627165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8818416494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225389837/jobs/5277637394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-macos-big-sur-cp310-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3225399579/jobs/5277659262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225461052/jobs/5277796660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225448646/jobs/5277768850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225391186/jobs/5277640200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225371552/jobs/5277598661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225431132/jobs/5277728629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225417996/jobs/5277699664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225416731/jobs/5277697003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3225463457/jobs/5277802185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8818298049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225425483/jobs/5277716077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8818399161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225386295/jobs/5277629520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8818324088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3225442767/jobs/5277754876'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8818291358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225453519/jobs/5277779786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225414395/jobs/5277691906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225388648/jobs/5277634734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,06c99f7ae1c944b47df23892652a478fee095422
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3225464513/jobs/5277804639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-11-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,06c99f7ae1c944b47df23892652a478fee095422
diff --git a/csv_reports/nightly-packaging-2022-10-12-0.csv b/csv_reports/nightly-packaging-2022-10-12-0.csv
deleted file mode 100644
index fef7d0bcf23..00000000000
--- a/csv_reports/nightly-packaging-2022-10-12-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233335717/jobs/5295058067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8841820682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233291835/jobs/5294957655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8841589925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233267389/jobs/5294899818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8841631208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233306305/jobs/5294990247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233326367/jobs/5295036131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8841554229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233255848/jobs/5294872119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8841751280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233321518/jobs/5295025289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233311041/jobs/5295001238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8842831614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8843201445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8843494213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8844943534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8842627973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8844337619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8844366103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8842343351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8842372035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8845138688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8843498552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8844301239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8843498088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8843101278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8842666864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8844953496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8842340613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8842788967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8843610669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8844158784'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8842907566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8844487865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8843336721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8844801166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8844698373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8843065505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8844282952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8843485294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8844677505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8844921412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,f25d88ed4619886a3832942597e61490b12db332
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8845762107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,f25d88ed4619886a3832942597e61490b12db332
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233317978/jobs/5295017247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8841797042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233274846/jobs/5294917950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8841810490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233293089/jobs/5294960472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,f25d88ed4619886a3832942597e61490b12db332
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3233266265/jobs/5294897423', 'https://github.com/ursacomputing/crossbow/actions/runs/3233266265/jobs/5294897363', 'https://github.com/ursacomputing/crossbow/actions/runs/3233266265/jobs/5294897228', 'https://github.com/ursacomputing/crossbow/actions/runs/3233266265/jobs/5294897057']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,f25d88ed4619886a3832942597e61490b12db332
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3233251422/jobs/5294861998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,f25d88ed4619886a3832942597e61490b12db332
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3233330153/jobs/5296164443', 'https://github.com/ursacomputing/crossbow/actions/runs/3233330153/jobs/5295045616', 'https://github.com/ursacomputing/crossbow/actions/runs/3233330153/jobs/5295045480', 'https://github.com/ursacomputing/crossbow/actions/runs/3233330153/jobs/5295045311']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-java-jars,github,{},java-jars/github.yml,f25d88ed4619886a3832942597e61490b12db332
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233337945/jobs/5295063243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,f25d88ed4619886a3832942597e61490b12db332
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233249205/jobs/5294856967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-python-sdist,github,{},python-sdist/github.yml,f25d88ed4619886a3832942597e61490b12db332
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295884170', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295420160', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295420041', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295419933', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295419792', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295419646', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295419523', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295196814', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295081178', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295081031', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295080932', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295080807', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295080699', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295080602', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295080464', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5295080320', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5294944188', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5294944062', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5294943861', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5294943759', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5294943626', 'https://github.com/ursacomputing/crossbow/actions/runs/3233283155/jobs/5294937094']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,f25d88ed4619886a3832942597e61490b12db332
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233314554/jobs/5295009263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8841539744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233287601/jobs/5294947889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8841537213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233254799/jobs/5294869801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8841634652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233307321/jobs/5294992592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233268400/jobs/5294902332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233289746/jobs/5294952947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233261910/jobs/5294886617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-macos-big-sur-cp39-universal2,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3233303711/jobs/5294984219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233302434/jobs/5294981171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233325160/jobs/5295033470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233263232/jobs/5294889541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233308737/jobs/5294995757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3233334507/jobs/5295055538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8841692208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233260754/jobs/5294883627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8841607213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3233272855/jobs/5294913076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8841736904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3233301058/jobs/5294978000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8841627676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233250393/jobs/5294859624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233258217/jobs/5294877757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233285398/jobs/5294942710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,f25d88ed4619886a3832942597e61490b12db332
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3233259348/jobs/5294880630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-12-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,f25d88ed4619886a3832942597e61490b12db332
diff --git a/csv_reports/nightly-packaging-2022-10-13-0.csv b/csv_reports/nightly-packaging-2022-10-13-0.csv
deleted file mode 100644
index 8b8b4c5700f..00000000000
--- a/csv_reports/nightly-packaging-2022-10-13-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240912703/jobs/5312142590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8864597232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240922768/jobs/5312167383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8864593595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240980159/jobs/5312303188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8864600680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240991090/jobs/5312328322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240938028/jobs/5312204057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8864772917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240975036/jobs/5312292679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8864730003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240916218/jobs/5312151362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240921112/jobs/5312163471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/8864701935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8867827244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8865486825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8867733915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8866848433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8868413133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8865444956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8867832922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8866144868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8867881892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8865805935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8866950379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8865504188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8868314500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8865549489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8867949783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8867282116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8867611613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8867195050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8866914487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8866631243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8867255382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8865971368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8866070741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8867138340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8868640144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8866475803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8868881469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8866725020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8867613668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8866149163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240924089/jobs/5312170548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8864693560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240931687/jobs/5312189426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8864796646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240935533/jobs/5312197738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3240941416/jobs/5312212800', 'https://github.com/ursacomputing/crossbow/actions/runs/3240941416/jobs/5312212677', 'https://github.com/ursacomputing/crossbow/actions/runs/3240941416/jobs/5312212553', 'https://github.com/ursacomputing/crossbow/actions/runs/3240941416/jobs/5312212412']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3240967251/jobs/5312274917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3240952563/jobs/5313332803', 'https://github.com/ursacomputing/crossbow/actions/runs/3240952563/jobs/5312239622', 'https://github.com/ursacomputing/crossbow/actions/runs/3240952563/jobs/5312239517', 'https://github.com/ursacomputing/crossbow/actions/runs/3240952563/jobs/5312239344']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-java-jars,github,{},java-jars/github.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240905368/jobs/5312125477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240900330/jobs/5312113482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-python-sdist,github,{},python-sdist/github.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5313253651', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312615759', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312615647', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312615524', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312615418', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312615311', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312615113', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312420751', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312323266', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312323149', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312323022', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312322913', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312322777', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312322657', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312322503', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312322375', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312143284', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312143155', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312143006', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312142833', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312142684', 'https://github.com/ursacomputing/crossbow/actions/runs/3240910123/jobs/5312136526']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240988447/jobs/5312322635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8864883337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240970030/jobs/5312281348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8864793169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240968869/jobs/5312278380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8864647226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240978854/jobs/5312300516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240911605/jobs/5312140150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240943548/jobs/5312217755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240972589/jobs/5312287212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240960843/jobs/5312259602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240977404/jobs/5312297647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3240971197/jobs/5312283960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240930648/jobs/5312186679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240992222/jobs/5312331121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240908781/jobs/5312133244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8864733439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240954882/jobs/5312245326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8864743771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240976152/jobs/5312295084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8864610368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3240957031/jobs/5312250672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8864851379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3240936478/jobs/5312200303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3240925982/jobs/5312175198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3240953770/jobs/5312242440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3240929270/jobs/5312183245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-13-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,02c671a3791d5f92d3ad0260396e2ee9c286670f
diff --git a/csv_reports/nightly-packaging-2022-10-14-0.csv b/csv_reports/nightly-packaging-2022-10-14-0.csv
deleted file mode 100644
index 60d4e08a923..00000000000
--- a/csv_reports/nightly-packaging-2022-10-14-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248650285/jobs/5330111745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8888390814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248672171/jobs/5330162664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8888406576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248644603/jobs/5330099520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8888409528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248662657/jobs/5330140463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248626972/jobs/5330061849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8888430132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248589456/jobs/5329982907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8888400815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248665892/jobs/5330147980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248645760/jobs/5330102280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/8889937601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8890933069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8889153496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8889966371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8891231861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8891352417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8889236764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8890363272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8889788194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8889423449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8891433717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8889165544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8890433073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8891584068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8889321731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8890928518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8890668337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8889139910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8891186685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8890555462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8889445433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8890352364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8890760723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8890663535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8889615068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8890437179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8889855070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8891927683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8891839186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8890707727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8889895313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248592006/jobs/5329988558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8888583599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248659114/jobs/5330132528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8888440127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248641853/jobs/5330094061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3248666868/jobs/5330150520', 'https://github.com/ursacomputing/crossbow/actions/runs/3248666868/jobs/5330150428', 'https://github.com/ursacomputing/crossbow/actions/runs/3248666868/jobs/5330150326', 'https://github.com/ursacomputing/crossbow/actions/runs/3248666868/jobs/5330150241']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3248596524/jobs/5329997718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3248597718/jobs/5330834990', 'https://github.com/ursacomputing/crossbow/actions/runs/3248597718/jobs/5330000709', 'https://github.com/ursacomputing/crossbow/actions/runs/3248597718/jobs/5330000565', 'https://github.com/ursacomputing/crossbow/actions/runs/3248597718/jobs/5330000458']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-java-jars,github,{},java-jars/github.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248657072/jobs/5330127861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248654914/jobs/5330122983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-python-sdist,github,{},python-sdist/github.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5331955764', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330576231', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330576135', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330576016', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330575895', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330575761', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330575606', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330334171', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330250665', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330250528', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330250404', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330250301', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330250206', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330250078', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330249965', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330249812', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330126881', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330126740', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330126624', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330126488', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330126315', 'https://github.com/ursacomputing/crossbow/actions/runs/3248653822/jobs/5330120267']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248603527/jobs/5330012538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8888412660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248667933/jobs/5330152706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8888471517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248598931/jobs/5330003011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8888468469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248661259/jobs/5330137470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248615658/jobs/5330038532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248624441/jobs/5330056716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248656005/jobs/5330125368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248587320/jobs/5329978231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248636468/jobs/5330081769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248648895/jobs/5330108922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248653195/jobs/5330118573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248604581/jobs/5330014908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248631902/jobs/5330072223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8888481084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248633442/jobs/5330075255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8888458404'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248608042/jobs/5330022501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8888435551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248605932/jobs/5330017943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8888477560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248651218/jobs/5330113985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248628108/jobs/5330064596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248600290/jobs/5330005540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3248611122/jobs/5330028993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,6bf9a546f296cdeebfe5cc543e1d1351cf251509
diff --git a/csv_reports/nightly-packaging-2022-10-16-0.csv b/csv_reports/nightly-packaging-2022-10-16-0.csv
deleted file mode 100644
index 48fce8202db..00000000000
--- a/csv_reports/nightly-packaging-2022-10-16-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258872778/jobs/5351283436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915209000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258850381/jobs/5351245705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915175788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258877889/jobs/5351292295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915195537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258851243/jobs/5351247156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258876455/jobs/5351289720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915184871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258868712/jobs/5351276296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915180675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258875581/jobs/5351288202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258874782/jobs/5351286782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/8915537746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915615757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8915436833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8915394232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8915874974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8916063828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8915651541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8915873784'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8915867399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8915485686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915856034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8915623640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8915693438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8916040155'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915516928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8915575114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8915880927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8915416745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8915777016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8915950716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8915467954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8915785557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8915864739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8915832778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8915494227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8915498716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8915639699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8915527399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8915321529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8915653076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8915392487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258859854/jobs/5351261575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8915186555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258866881/jobs/5351273108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8915217379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258854817/jobs/5351253736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3258873613/jobs/5351284957', 'https://github.com/ursacomputing/crossbow/actions/runs/3258873613/jobs/5351284930', 'https://github.com/ursacomputing/crossbow/actions/runs/3258873613/jobs/5351284898', 'https://github.com/ursacomputing/crossbow/actions/runs/3258873613/jobs/5351284868']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3258863460/jobs/5351267491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3258849024/jobs/5351526770', 'https://github.com/ursacomputing/crossbow/actions/runs/3258849024/jobs/5351243831', 'https://github.com/ursacomputing/crossbow/actions/runs/3258849024/jobs/5351243796', 'https://github.com/ursacomputing/crossbow/actions/runs/3258849024/jobs/5351243736']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-java-jars,github,{},java-jars/github.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258878255/jobs/5351292925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258873223/jobs/5351284256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-python-sdist,github,{},python-sdist/github.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351620383', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351442783', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351442740', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351442693', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351442648', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351442613', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351442575', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351380752', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351338279', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351338240', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351338198', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351338159', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351338119', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351338091', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351338058', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351338021', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351287717', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351287691', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351287660', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351287615', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351287568', 'https://github.com/ursacomputing/crossbow/actions/runs/3258874197/jobs/5351285823']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3258871549/jobs/5351281316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8915223901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258855900/jobs/5351255518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8915174949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258860716/jobs/5351262963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8915193272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258866419/jobs/5351272323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258875182/jobs/5351287519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258854170/jobs/5351252514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258865166/jobs/5351270193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258860207/jobs/5351262224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258847585/jobs/5351241589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258876888/jobs/5351290625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258877432/jobs/5351291526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258856802/jobs/5351256945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258881739/jobs/5351298702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915204987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258863897/jobs/5351268200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915178326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258862220/jobs/5351265487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915202269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258864425/jobs/5351268963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8915211409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258857191/jobs/5351257567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258880939/jobs/5351297341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258870261/jobs/5351278910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3258871018/jobs/5351280395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,0b86e40622f7153d64b36b4e65e0c0ace15d6ffa
diff --git a/csv_reports/nightly-packaging-2022-10-17-0.csv b/csv_reports/nightly-packaging-2022-10-17-0.csv
deleted file mode 100644
index a967e2deb45..00000000000
--- a/csv_reports/nightly-packaging-2022-10-17-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263670157/jobs/5363086704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8929081573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263721527/jobs/5363224460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8929111719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263711119/jobs/5363198857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8929044364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263737097/jobs/5363262011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263680578/jobs/5363116270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8929047867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263708960/jobs/5363192914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8929241703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263692955/jobs/5363147771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263640328/jobs/5363001494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/8929080953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8930017155'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8929792192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8930858911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8932113177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8931543592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8929995719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8929926688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8929939369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8930863000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8931093779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8931784447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8931027578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8930114821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8931927668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8930966770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8931803150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8930322269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8930047801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8931028187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8932802138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8930885900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8932835339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8932292644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8931503608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8931346871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8929642654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8932267440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8931905869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8929478085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8931566926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263654885/jobs/5363048323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8928942225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263673411/jobs/5363094851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8928977837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263730709/jobs/5363248221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3263649186/jobs/5363028256', 'https://github.com/ursacomputing/crossbow/actions/runs/3263649186/jobs/5363028110', 'https://github.com/ursacomputing/crossbow/actions/runs/3263649186/jobs/5363027943', 'https://github.com/ursacomputing/crossbow/actions/runs/3263649186/jobs/5363027741']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3263720376/jobs/5363220910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3263725119/jobs/5364288705', 'https://github.com/ursacomputing/crossbow/actions/runs/3263725119/jobs/5363235794', 'https://github.com/ursacomputing/crossbow/actions/runs/3263725119/jobs/5363235643', 'https://github.com/ursacomputing/crossbow/actions/runs/3263725119/jobs/5363235440']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-java-jars,github,{},java-jars/github.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263650367/jobs/5363030734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263703255/jobs/5363173709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-python-sdist,github,{},python-sdist/github.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5364421086', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5364018956', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5364018803', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5364018676', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5364018546', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5364018426', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5364018254', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363577650', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363420859', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363420724', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363420561', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363420408', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363420276', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363420139', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363420000', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363419828', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363257701', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363257602', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363257498', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363257384', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363257249', 'https://github.com/ursacomputing/crossbow/actions/runs/3263732620/jobs/5363251930']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263699758/jobs/5363165286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8929097358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263710283/jobs/5363196213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8929087825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263734669/jobs/5363256261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8929204868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263695553/jobs/5363155647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263735792/jobs/5363258732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263664926/jobs/5363074811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263656306/jobs/5363053239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263677176/jobs/5363107386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263694093/jobs/5363151459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263713545/jobs/5363204129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263696376/jobs/5363157924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263645014/jobs/5363014379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263723644/jobs/5363232186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8929007989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263706814/jobs/5363186406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8929231393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263727385/jobs/5363240875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8929091261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263643621/jobs/5363009918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8929145376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263718106/jobs/5363214595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263675708/jobs/5363103105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263674615/jobs/5363099210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3263666259/jobs/5363077815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-17-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,66874f5a075525dd440f4d60e0e54042dcbe71ad
diff --git a/csv_reports/nightly-packaging-2022-10-19-0.csv b/csv_reports/nightly-packaging-2022-10-19-0.csv
deleted file mode 100644
index 6b98e85bb4b..00000000000
--- a/csv_reports/nightly-packaging-2022-10-19-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280086931/jobs/5400435727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8978839661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280071447/jobs/5400399331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8978647507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280093123/jobs/5400450168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8978696526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280128779/jobs/5400531732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280094549/jobs/5400453207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8978816875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280076515/jobs/5400411856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8978728531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280084359/jobs/5400429514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280132389/jobs/5400539932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/8979491446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8979632691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8979755236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8980814385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8979710729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8981600093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/8980987522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/8981540098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8981768282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8980757318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8981709457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8980937520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8979460903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8979742095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8980498961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/8981662981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/8979445545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/8980700825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/8981329064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/8981642415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/8982371999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8979877769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8979947238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8982479141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8981119210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8981322069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/8980929407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/8980247933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/8981795084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/8980001136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/8981389398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280078694/jobs/5400416886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8978654117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280096880/jobs/5400458635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8978883921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280059784/jobs/5400373818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3280064457/jobs/5400384658', 'https://github.com/ursacomputing/crossbow/actions/runs/3280064457/jobs/5400384527', 'https://github.com/ursacomputing/crossbow/actions/runs/3280064457/jobs/5400384360', 'https://github.com/ursacomputing/crossbow/actions/runs/3280064457/jobs/5400384173']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3280133456/jobs/5400542339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3280074162/jobs/5401335803', 'https://github.com/ursacomputing/crossbow/actions/runs/3280074162/jobs/5400406446', 'https://github.com/ursacomputing/crossbow/actions/runs/3280074162/jobs/5400406245', 'https://github.com/ursacomputing/crossbow/actions/runs/3280074162/jobs/5400406080']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-java-jars,github,{},java-jars/github.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280098541/jobs/5400462645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280129969/jobs/5400534694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-python-sdist,github,{},python-sdist/github.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400749379', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400673539', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400586074', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400585951', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400585798', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400585654', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400585545', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400585419', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400585299', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400585153', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400457476', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400428708', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400428531', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400428405', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400428284', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400428098', 'https://github.com/ursacomputing/crossbow/actions/runs/3280080491/jobs/5400420732']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280101010/jobs/5400467753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8978904364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280111045/jobs/5400491358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8978837022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280103196/jobs/5400472648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/8978689068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280149711/jobs/5400579485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280113244/jobs/5400496205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280066047/jobs/5400387584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280147532/jobs/5400574065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280134776/jobs/5400545361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280105402/jobs/5400478139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280104116/jobs/5400474986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280131265/jobs/5400537616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280126651/jobs/5400527174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280143640/jobs/5400565016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8978931797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280083116/jobs/5400426205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8978886949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280067417/jobs/5400390412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8978880683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280119894/jobs/5400511777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/8978900892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280089336/jobs/5400441056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280072645/jobs/5400402213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280068727/jobs/5400393115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,183517c8baad039c0100687c8a405bd4d8b404a7
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3280122254/jobs/5400517329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,183517c8baad039c0100687c8a405bd4d8b404a7
diff --git a/csv_reports/nightly-packaging-2022-10-20-0.csv b/csv_reports/nightly-packaging-2022-10-20-0.csv
deleted file mode 100644
index 6d4942b183f..00000000000
--- a/csv_reports/nightly-packaging-2022-10-20-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288143611/jobs/5418127721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002695468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288152571/jobs/5418148568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002501831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288097188/jobs/5418024465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002639983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288115429/jobs/5418065663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288170706/jobs/5418186518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002569045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288117444/jobs/5418070930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002488609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288128939/jobs/5418097164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288137559/jobs/5418116220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9002590316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9003738402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9005158968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9003227214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9003552203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9004586581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/9005300130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/9004214251'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9003590514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9004818104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9004363724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9003266168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9004395699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9005139066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9005277686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9003331109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9003216876'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9004121472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9003534172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/9005352951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/9004254390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9005210411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9005001432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9004202756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9003930363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9004358883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9004826013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9003072548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9004781389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9003707555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9004032550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288173925/jobs/5418193437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002630168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288142252/jobs/5418125421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002601925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288169203/jobs/5418183232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3288118678/jobs/5418073794', 'https://github.com/ursacomputing/crossbow/actions/runs/3288118678/jobs/5418073696', 'https://github.com/ursacomputing/crossbow/actions/runs/3288118678/jobs/5418073564', 'https://github.com/ursacomputing/crossbow/actions/runs/3288118678/jobs/5418073441']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3288165445/jobs/5418175466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3288099723/jobs/5418961215', 'https://github.com/ursacomputing/crossbow/actions/runs/3288099723/jobs/5418030268', 'https://github.com/ursacomputing/crossbow/actions/runs/3288099723/jobs/5418030116', 'https://github.com/ursacomputing/crossbow/actions/runs/3288099723/jobs/5418029942']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-java-jars,github,{},java-jars/github.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288092374/jobs/5418014383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288103116/jobs/5418037613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-python-sdist,github,{},python-sdist/github.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5419110335', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418486512', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418486359', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418486221', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418486082', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418485909', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418485709', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418252474', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418163081', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418162976', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418162858', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418162755', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418162650', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418162567', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418162471', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418162333', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418027015', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418026871', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418026768', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418026641', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418026501', 'https://github.com/ursacomputing/crossbow/actions/runs/3288094387/jobs/5418019047']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288124930/jobs/5418088200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002672891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288126020/jobs/5418090621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002647210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288101678/jobs/5418034579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002703292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288130539/jobs/5418100471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288145718/jobs/5418133067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288124032/jobs/5418085793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288119823/jobs/5418076133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288105217/jobs/5418042348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288175065/jobs/5418196192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288134617/jobs/5418109054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288108805/jobs/5418050255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288113033/jobs/5418060298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288121670/jobs/5418080701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002739444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288155110/jobs/5418153657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002719081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288157225/jobs/5418158354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002732694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288150589/jobs/5418143705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9002735603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288181771/jobs/5418210088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288136644/jobs/5418114033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288151797/jobs/5418146361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3288171453/jobs/5418188288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,0f91e684ddda3dfd11d376c2755bbc3071c3099d
diff --git a/csv_reports/nightly-packaging-2022-10-21-0.csv b/csv_reports/nightly-packaging-2022-10-21-0.csv
deleted file mode 100644
index 7ddcf7e5b80..00000000000
--- a/csv_reports/nightly-packaging-2022-10-21-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296059728/jobs/5435280209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025666294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296109097/jobs/5435385085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025700172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296048484/jobs/5435255150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025803757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296033522/jobs/5435222732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296038615/jobs/5435233754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025893142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296066161/jobs/5435294122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025688031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296104837/jobs/5435375891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296079939/jobs/5435322769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9027620650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9028891154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9027653511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9026299887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9026434394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9027945217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/9027406559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/9027891017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9028642719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9027030935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9026664494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9027573320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9028440246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9026627677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9028392485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9027118142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9028203772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9028735342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9028786315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/9027961763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/9027868226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9026925088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9028228854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9027046600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9027014492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9026908290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9027910774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9026943418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9027048718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9028714502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,2f627c213fc328ca7cd058d4455581fc246837da
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9028750645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,2f627c213fc328ca7cd058d4455581fc246837da
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296043045/jobs/5435243223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025800875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296081984/jobs/5435327108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025863033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296055719/jobs/5435271339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,2f627c213fc328ca7cd058d4455581fc246837da
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3296095449/jobs/5435355416', 'https://github.com/ursacomputing/crossbow/actions/runs/3296095449/jobs/5435355289', 'https://github.com/ursacomputing/crossbow/actions/runs/3296095449/jobs/5435355139', 'https://github.com/ursacomputing/crossbow/actions/runs/3296095449/jobs/5435355027']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,2f627c213fc328ca7cd058d4455581fc246837da
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3296031979/jobs/5435219919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,2f627c213fc328ca7cd058d4455581fc246837da
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3296041921/jobs/5436071457', 'https://github.com/ursacomputing/crossbow/actions/runs/3296041921/jobs/5435240844', 'https://github.com/ursacomputing/crossbow/actions/runs/3296041921/jobs/5435240721', 'https://github.com/ursacomputing/crossbow/actions/runs/3296041921/jobs/5435240600']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-java-jars,github,{},java-jars/github.yml,2f627c213fc328ca7cd058d4455581fc246837da
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296057792/jobs/5435275920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,2f627c213fc328ca7cd058d4455581fc246837da
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296023359/jobs/5435201063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-python-sdist,github,{},python-sdist/github.yml,2f627c213fc328ca7cd058d4455581fc246837da
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5436319977', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435952217', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435952114', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435951966', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435951731', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435951620', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435951472', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435605858', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435520112', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435519932', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435519761', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435519585', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435519456', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435519332', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435519196', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435519001', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435367501', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435367367', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435367223', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435367127', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435366994', 'https://github.com/ursacomputing/crossbow/actions/runs/3296096988/jobs/5435358373']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,2f627c213fc328ca7cd058d4455581fc246837da
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296084245/jobs/5435331477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025718416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296049634/jobs/5435257715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025769107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296091186/jobs/5435345773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025727848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296070287/jobs/5435302625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296024323/jobs/5435203183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296056915/jobs/5435273873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296105782/jobs/5435377796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296045241/jobs/5435248195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296092452/jobs/5435348490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296078697/jobs/5435320196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296103506/jobs/5435372908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296071472/jobs/5435305049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296089966/jobs/5435343199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025715801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296051645/jobs/5435261961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025812576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296063037/jobs/5435287230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025797908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296074480/jobs/5435311624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9025766360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296061902/jobs/5435284808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296086299/jobs/5435335499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296072362/jobs/5435307158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,2f627c213fc328ca7cd058d4455581fc246837da
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3296094560/jobs/5435352706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-21-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,2f627c213fc328ca7cd058d4455581fc246837da
diff --git a/csv_reports/nightly-packaging-2022-10-22-0.csv b/csv_reports/nightly-packaging-2022-10-22-0.csv
deleted file mode 100644
index 2ebe579a878..00000000000
--- a/csv_reports/nightly-packaging-2022-10-22-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302662294/jobs/5449747635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044628351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302662641/jobs/5449748222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044593594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302647734/jobs/5449715879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044638063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302657110/jobs/5449737578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302644974/jobs/5449711541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044592183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302653016/jobs/5449727574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044590095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302634234/jobs/5449687029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302652084/jobs/5449725772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9044949857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9045265203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9045533568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9045654113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9045542581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9045237310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/9045345904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/9045662608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9045522599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9044866655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9045235812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9044811300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9044870839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9044896426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044866219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9045494625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9045608836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9045377142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9045480368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/9044875381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9045598536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9044928341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9045161897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9045242076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9044926433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9044935903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9045548681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9045068023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9045338442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9045196948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9045365854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302650461/jobs/5449722469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044621940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302634732/jobs/5449688274'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044650290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302640730/jobs/5449702578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3302641403/jobs/5449703747', 'https://github.com/ursacomputing/crossbow/actions/runs/3302641403/jobs/5449703729', 'https://github.com/ursacomputing/crossbow/actions/runs/3302641403/jobs/5449703712', 'https://github.com/ursacomputing/crossbow/actions/runs/3302641403/jobs/5449703690']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3302647307/jobs/5449715271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3302639991/jobs/5450009132', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639991/jobs/5449701317', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639991/jobs/5449701267', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639991/jobs/5449701210']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-java-jars,github,{},java-jars/github.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302643928/jobs/5449707768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302631576/jobs/5449682478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-python-sdist,github,{},python-sdist/github.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5450071454', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449863181', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449863165', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449863128', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449863106', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449863068', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449863040', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449794998', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449761483', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449761446', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449761430', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449761405', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449761368', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449761322', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449761295', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449761254', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449701703', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449701681', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449701638', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449701611', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449701584', 'https://github.com/ursacomputing/crossbow/actions/runs/3302639004/jobs/5449697489']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302661927/jobs/5449747016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044644341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302659710/jobs/5449742848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044582889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302656724/jobs/5449736664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044622744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302649005/jobs/5449717867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302632767/jobs/5449684608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302638724/jobs/5449696907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302661038/jobs/5449745345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302664723/jobs/5449751782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302646859/jobs/5449714604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302653673/jobs/5449729028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302650795/jobs/5449722980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302651746/jobs/5449724669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302635224/jobs/5449690841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044645196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302644316/jobs/5449709092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044613402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302646629/jobs/5449714151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044588213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302664953/jobs/5449752203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9044642431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302640278/jobs/5449701887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302655098/jobs/5449733940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302663327/jobs/5449749232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3302663687/jobs/5449750043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-22-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4ce64537e5ee223bf5eea91284efc46f214d6c76
diff --git a/csv_reports/nightly-packaging-2022-10-23-0.csv b/csv_reports/nightly-packaging-2022-10-23-0.csv
deleted file mode 100644
index 5d365461021..00000000000
--- a/csv_reports/nightly-packaging-2022-10-23-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306450510/jobs/5457350845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053443261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306419563/jobs/5457299191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053460767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306442255/jobs/5457337337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053444816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306449738/jobs/5457349433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306426549/jobs/5457311874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053460153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306435923/jobs/5457326909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053484975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306428159/jobs/5457314669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306447976/jobs/5457346717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9054083725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9054292155'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9054140829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9053665891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9053721181'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9054417495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/9054303616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/9054011124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9054025457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9054336823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9054381828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9053863735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9053990649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9054139259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053681436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9053693856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9053693158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9053952929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9054059551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/9054189686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/9053957076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9054340174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9053782065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9053741136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9054084283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9053732508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9053767993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9054070636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9054413507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9054053055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9053698965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306446787/jobs/5457344796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053481421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306445949/jobs/5457343523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053430378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306436732/jobs/5457328232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3306430440/jobs/5457318463', 'https://github.com/ursacomputing/crossbow/actions/runs/3306430440/jobs/5457318430', 'https://github.com/ursacomputing/crossbow/actions/runs/3306430440/jobs/5457318392', 'https://github.com/ursacomputing/crossbow/actions/runs/3306430440/jobs/5457318355']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3306421489/jobs/5457302371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3306444185/jobs/5457636335', 'https://github.com/ursacomputing/crossbow/actions/runs/3306444185/jobs/5457340767', 'https://github.com/ursacomputing/crossbow/actions/runs/3306444185/jobs/5457340736', 'https://github.com/ursacomputing/crossbow/actions/runs/3306444185/jobs/5457340692']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-java-jars,github,{},java-jars/github.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306427161/jobs/5457313131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306431995/jobs/5457320710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-python-sdist,github,{},python-sdist/github.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457664502', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457472397', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457472364', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457472330', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457472297', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457472260', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457472205', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457401055', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457362985', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457362940', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457362902', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457362849', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457362817', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457362774', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457362729', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457362653', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457321430', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457321402', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457321360', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457321331', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457321292', 'https://github.com/ursacomputing/crossbow/actions/runs/3306431104/jobs/5457319346']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306424446/jobs/5457307862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053461781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306425342/jobs/5457309651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053431946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306420095/jobs/5457299979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053434467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306451875/jobs/5457353314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306431400/jobs/5457319913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306434062/jobs/5457324147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306434567/jobs/5457324834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306437776/jobs/5457329954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306442871/jobs/5457338211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306435386/jobs/5457326085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306429711/jobs/5457317104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306441546/jobs/5457336207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306437129/jobs/5457328914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053449205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306443515/jobs/5457339651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053477674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306432813/jobs/5457322104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053432896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306420543/jobs/5457300782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9053436445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306419226/jobs/5457298464'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306440726/jobs/5457334977'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306436488/jobs/5457327765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3306443251/jobs/5457338964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-23-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
diff --git a/csv_reports/nightly-packaging-2022-10-24-0.csv b/csv_reports/nightly-packaging-2022-10-24-0.csv
deleted file mode 100644
index 089c9c643b0..00000000000
--- a/csv_reports/nightly-packaging-2022-10-24-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311251998/jobs/5466465051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064693089'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311340773/jobs/5466662189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064696611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311324566/jobs/5466627583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064669255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311275100/jobs/5466517210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311305898/jobs/5466585406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064744315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311333720/jobs/5466647614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064674388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311269582/jobs/5466504882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311279875/jobs/5466527430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9064683172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9067466774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9066742611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9065534921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9065440637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9067262138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/9065467193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/9067670985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9067691900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9065470331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9067557838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9066996080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9066397754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9067551500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9065642104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9066614663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9065440082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9066504305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9066618429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9066283514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/9065614131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9066802646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9066796746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9065614767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9066795698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9067618480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9065960207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9068177929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9067968643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9066737278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9065866076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311266303/jobs/5466496991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064808407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311322406/jobs/5466623008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064589754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311323486/jobs/5466625220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3311282032/jobs/5466532504', 'https://github.com/ursacomputing/crossbow/actions/runs/3311282032/jobs/5466532356', 'https://github.com/ursacomputing/crossbow/actions/runs/3311282032/jobs/5466532217', 'https://github.com/ursacomputing/crossbow/actions/runs/3311282032/jobs/5466532071']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3311255516/jobs/5466473058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3311258012/jobs/5467385002', 'https://github.com/ursacomputing/crossbow/actions/runs/3311258012/jobs/5466478588', 'https://github.com/ursacomputing/crossbow/actions/runs/3311258012/jobs/5466478459', 'https://github.com/ursacomputing/crossbow/actions/runs/3311258012/jobs/5466478363']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-java-jars,github,{},java-jars/github.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311264338/jobs/5466491648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311271908/jobs/5466509831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-python-sdist,github,{},python-sdist/github.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5467581828', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5467070476', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5467070365', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5467070252', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5467070140', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5467070017', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5467069881', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466845253', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466754021', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466753893', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466753734', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466753602', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466753457', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466753288', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466753138', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466752889', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466606944', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466606796', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466606618', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466606492', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466606315', 'https://github.com/ursacomputing/crossbow/actions/runs/3311312301/jobs/5466600260']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311278651/jobs/5466524946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064799053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311338715/jobs/5466657411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064653974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311291825/jobs/5466553577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064709131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311299364/jobs/5466570441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311303940/jobs/5466580893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311253464/jobs/5466468444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311294170/jobs/5466558592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311288529/jobs/5466545984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311320408/jobs/5466618480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311298267/jobs/5466567797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311329968/jobs/5466639975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311329229/jobs/5466638359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311315667/jobs/5466607991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9064641834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311262762/jobs/5466488122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064628511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311276846/jobs/5466520475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064779499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311274176/jobs/5466515033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9064672348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311325693/jobs/5466630295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311286065/jobs/5466540881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311314784/jobs/5466605766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3311296350/jobs/5466563669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,33f2c0ec8e281fc4fe8c03b07ed2d32e343d9b0e
diff --git a/csv_reports/nightly-packaging-2022-10-25-0.csv b/csv_reports/nightly-packaging-2022-10-25-0.csv
deleted file mode 100644
index e2c4f8d4a9b..00000000000
--- a/csv_reports/nightly-packaging-2022-10-25-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319510317/jobs/5484751917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088626855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319502497/jobs/5484736468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088578472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319466539/jobs/5484657918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088551642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319497881/jobs/5484726393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319463342/jobs/5484650654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088697963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319477924/jobs/5484682329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088602191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319496775/jobs/5484724057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319516424/jobs/5484765389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9089352647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9089427703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9089307232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9090411867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9089564682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9091521803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/9090879975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9091564248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9091631746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9089419803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9089639259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9090970595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9090007097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9090342042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9090860681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9090507217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9089319209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9091577250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9089309086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9092107842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9091255728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9092061894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9090620995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9089989900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9089932739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9090701111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9089733687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9091286940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9091693944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9090910082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,cee703ba84883444c9bad940531f49d1a52e156c
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9090567429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,cee703ba84883444c9bad940531f49d1a52e156c
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319468669/jobs/5484662811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088809928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319422857/jobs/5484560070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088669335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319476975/jobs/5484680140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,cee703ba84883444c9bad940531f49d1a52e156c
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3319511500/jobs/5484754794', 'https://github.com/ursacomputing/crossbow/actions/runs/3319511500/jobs/5484754670', 'https://github.com/ursacomputing/crossbow/actions/runs/3319511500/jobs/5484754510', 'https://github.com/ursacomputing/crossbow/actions/runs/3319511500/jobs/5484754323']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,cee703ba84883444c9bad940531f49d1a52e156c
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3319489007/jobs/5484707084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,cee703ba84883444c9bad940531f49d1a52e156c
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3319433894/jobs/5486229151', 'https://github.com/ursacomputing/crossbow/actions/runs/3319433894/jobs/5484584628', 'https://github.com/ursacomputing/crossbow/actions/runs/3319433894/jobs/5484584480', 'https://github.com/ursacomputing/crossbow/actions/runs/3319433894/jobs/5484584234']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-java-jars,github,{},java-jars/github.yml,cee703ba84883444c9bad940531f49d1a52e156c
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319474838/jobs/5484675501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,cee703ba84883444c9bad940531f49d1a52e156c
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319491241/jobs/5484711836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-python-sdist,github,{},python-sdist/github.yml,cee703ba84883444c9bad940531f49d1a52e156c
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485846145', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485277574', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485277449', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485277343', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485277214', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485277092', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485276897', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485238026', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485143074', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485142929', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485142776', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485142637', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485142518', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485142392', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485142239', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5485142058', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5484769142', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5484768780', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5484768632', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5484768460', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5484768278', 'https://github.com/ursacomputing/crossbow/actions/runs/3319514496/jobs/5484760656']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,cee703ba84883444c9bad940531f49d1a52e156c
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319480184/jobs/5484687552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088639929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319457460/jobs/5484638354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088666133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319506183/jobs/5484743870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9088758473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319436368/jobs/5484589566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319482539/jobs/5484692674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319471474/jobs/5484668343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319453931/jobs/5484629764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319481331/jobs/5484690133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319452995/jobs/5484627768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319432612/jobs/5484581505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319501129/jobs/5484733707'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319484083/jobs/5484695817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319507467/jobs/5484746450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088633022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319505026/jobs/5484741568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088659929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319446475/jobs/5484613235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088764953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319508672/jobs/5484749097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9088648734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319494657/jobs/5484719358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319488003/jobs/5484704712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319437644/jobs/5484592296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,cee703ba84883444c9bad940531f49d1a52e156c
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3319515462/jobs/5484762852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,cee703ba84883444c9bad940531f49d1a52e156c
diff --git a/csv_reports/nightly-packaging-2022-10-26-0.csv b/csv_reports/nightly-packaging-2022-10-26-0.csv
deleted file mode 100644
index b8a40e2aa77..00000000000
--- a/csv_reports/nightly-packaging-2022-10-26-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327485972/jobs/5502354867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112304448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327475858/jobs/5502332717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112295869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327487819/jobs/5502359026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112363195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327480296/jobs/5502342269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327480008/jobs/5502341385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112273955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327499410/jobs/5502384749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112282008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327499939/jobs/5502385789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327496480/jobs/5502378077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-clean,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9114053669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9114157920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9112998106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9113123124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9114706224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9114836847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9115468191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9113172615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9114072606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9115058919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9113982405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9113014298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9114087652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9115718437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9113679118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9115163274'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9113159616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9115137866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9113466171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9114931169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9113436420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9116228400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9115338577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9115001529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9113702021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9113310706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9114092578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9114695030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9114443036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9115304899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327460902/jobs/5502300885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112369182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327461868/jobs/5502302687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112310091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327489166/jobs/5502362056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3327467860/jobs/5502315497', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467860/jobs/5502315363', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467860/jobs/5502315223', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467860/jobs/5502315066']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3327488180/jobs/5502359975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3327488619/jobs/5503276038', 'https://github.com/ursacomputing/crossbow/actions/runs/3327488619/jobs/5502361352', 'https://github.com/ursacomputing/crossbow/actions/runs/3327488619/jobs/5502361102', 'https://github.com/ursacomputing/crossbow/actions/runs/3327488619/jobs/5502360953']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-java-jars,github,{},java-jars/github.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327500722/jobs/5502387294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327492398/jobs/5502369260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-python-sdist,github,{},python-sdist/github.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5503509714', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502871926', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502871789', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502871637', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502871480', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502871320', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502871174', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502583610', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502486552', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502486375', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502486242', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502486080', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502485928', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502485743', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502485574', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502485381', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502322823', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502322659', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502322489', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502322349', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502322211', 'https://github.com/ursacomputing/crossbow/actions/runs/3327467204/jobs/5502313592']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327501072/jobs/5502388204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112381783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327472293/jobs/5502325045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112335106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327491594/jobs/5502367539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112298531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327463177/jobs/5502305397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327482992/jobs/5502347989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327483546/jobs/5502349122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327481782/jobs/5502345534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327462608/jobs/5502304216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327478522/jobs/5502338249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327468233/jobs/5502316076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327477882/jobs/5502336902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327493065/jobs/5502370561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327476930/jobs/5502334881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112311774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327470743/jobs/5502321658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112330480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327478951/jobs/5502339132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112339613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327489716/jobs/5502363232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9112377760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327491192/jobs/5502366345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327459710/jobs/5502297987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327474718/jobs/5502330329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3327479542/jobs/5502340416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-26-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,7f6c5aeb5388936709642e48aed6419d1e2144a6
diff --git a/csv_reports/nightly-packaging-2022-10-27-0.csv b/csv_reports/nightly-packaging-2022-10-27-0.csv
deleted file mode 100644
index b6a9a8505ba..00000000000
--- a/csv_reports/nightly-packaging-2022-10-27-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335834335/jobs/5520265977'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136321431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335844285/jobs/5520286126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136340858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335860339/jobs/5520319571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136345839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335856269/jobs/5520311141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335837045/jobs/5520271183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136335276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335857447/jobs/5520313212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136357419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335866147/jobs/5520332379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335827348/jobs/5520251254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9136363515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9139729541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9138687658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9138131192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9137174265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9139182128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9139924728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9138319735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9137301380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9137435386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9138325042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9139346339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9138133127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9138501515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9137196162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9137221965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9139128875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9139359220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9139236702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9137240637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9137537408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9137808398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9138916477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9137713647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9139146450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9137795578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9139345755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9138390958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9139174163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9138116427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,31e8eebd701d44cc5418152df11fb251a9428943
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9139372738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,31e8eebd701d44cc5418152df11fb251a9428943
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335854067/jobs/5520306497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136399670'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335863620/jobs/5520326959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136401368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335857868/jobs/5520314225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,31e8eebd701d44cc5418152df11fb251a9428943
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3335859770/jobs/5520318699', 'https://github.com/ursacomputing/crossbow/actions/runs/3335859770/jobs/5520318593', 'https://github.com/ursacomputing/crossbow/actions/runs/3335859770/jobs/5520318488', 'https://github.com/ursacomputing/crossbow/actions/runs/3335859770/jobs/5520318372']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,31e8eebd701d44cc5418152df11fb251a9428943
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3335827913/jobs/5520252298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,31e8eebd701d44cc5418152df11fb251a9428943
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3335858788/jobs/5521256830', 'https://github.com/ursacomputing/crossbow/actions/runs/3335858788/jobs/5520316629', 'https://github.com/ursacomputing/crossbow/actions/runs/3335858788/jobs/5520316475', 'https://github.com/ursacomputing/crossbow/actions/runs/3335858788/jobs/5520316362']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-java-jars,github,{},java-jars/github.yml,31e8eebd701d44cc5418152df11fb251a9428943
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335839161/jobs/5520275555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,31e8eebd701d44cc5418152df11fb251a9428943
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335838086/jobs/5520273289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-python-sdist,github,{},python-sdist/github.yml,31e8eebd701d44cc5418152df11fb251a9428943
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5521533932', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520797221', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520797123', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520796995', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520796873', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520796738', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520796543', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520594332', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520460623', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520460473', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520460365', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520460252', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520460145', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520460035', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520459913', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520459734', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520315495', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520315357', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520315224', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520315073', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520314879', 'https://github.com/ursacomputing/crossbow/actions/runs/3335853248/jobs/5520304767']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,31e8eebd701d44cc5418152df11fb251a9428943
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335856882/jobs/5520312229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136342504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335848786/jobs/5520295408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136330771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335847735/jobs/5520293239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136343706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335848204/jobs/5520294209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335833871/jobs/5520264985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335865210/jobs/5520330519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335862687/jobs/5520325021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335843710/jobs/5520284890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335864860/jobs/5520329647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335825849/jobs/5520248280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335833538/jobs/5520264252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335832889/jobs/5520263034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335850196/jobs/5520298275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136355809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335831879/jobs/5520261005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136402976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335865556/jobs/5520331316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136374633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335844853/jobs/5520287276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9136384314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335828870/jobs/5520254375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335849261/jobs/5520296471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335842069/jobs/5520281322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,31e8eebd701d44cc5418152df11fb251a9428943
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3335835418/jobs/5520268045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-27-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,31e8eebd701d44cc5418152df11fb251a9428943
diff --git a/csv_reports/nightly-packaging-2022-10-28-0.csv b/csv_reports/nightly-packaging-2022-10-28-0.csv
deleted file mode 100644
index 3357d25c4b8..00000000000
--- a/csv_reports/nightly-packaging-2022-10-28-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344050126/jobs/5537950572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159837574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344065060/jobs/5537984282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159833393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3344054642/jobs/5537960712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159894114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344044453/jobs/5537938188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344066705/jobs/5537987806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159910977'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344049563/jobs/5537949652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159864606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3344069848/jobs/5537994677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344068455/jobs/5537991562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9159889124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9160776930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9160580225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9161556355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9162719891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9162270954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9162439958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9161912517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9162277908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9162066205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9160638878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9160462326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9161203732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9160571548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9162304352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9161433272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9161395747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9160710754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9162725340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9162192932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9162629336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9162759275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9161907928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9160946198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9161884462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9161141207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9162774782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9161653096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9161538712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9162823990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,a2881a124339d7d50088c5b9778c725316a7003e
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9160988428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,a2881a124339d7d50088c5b9778c725316a7003e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344060158/jobs/5537973347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159865579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344059343/jobs/5537971747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159882722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3344076572/jobs/5538009163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,a2881a124339d7d50088c5b9778c725316a7003e
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3344043695/jobs/5537936808', 'https://github.com/ursacomputing/crossbow/actions/runs/3344043695/jobs/5537936707', 'https://github.com/ursacomputing/crossbow/actions/runs/3344043695/jobs/5537936613', 'https://github.com/ursacomputing/crossbow/actions/runs/3344043695/jobs/5537936488']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,a2881a124339d7d50088c5b9778c725316a7003e
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3344048213/jobs/5537946778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,a2881a124339d7d50088c5b9778c725316a7003e
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3344060934/jobs/5539460807', 'https://github.com/ursacomputing/crossbow/actions/runs/3344060934/jobs/5537975451', 'https://github.com/ursacomputing/crossbow/actions/runs/3344060934/jobs/5537975356', 'https://github.com/ursacomputing/crossbow/actions/runs/3344060934/jobs/5537975164']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-java-jars,github,{},java-jars/github.yml,a2881a124339d7d50088c5b9778c725316a7003e
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344051833/jobs/5537954496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,a2881a124339d7d50088c5b9778c725316a7003e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344058623/jobs/5537969944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-python-sdist,github,{},python-sdist/github.yml,a2881a124339d7d50088c5b9778c725316a7003e
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538847817', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538433241', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538433121', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538432981', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538432884', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538432756', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538432611', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538226579', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538127186', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538127010', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538126873', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538126722', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538126610', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538126483', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538126375', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5538126245', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5537978160', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5537978021', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5537977920', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5537977810', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5537977694', 'https://github.com/ursacomputing/crossbow/actions/runs/3344057400/jobs/5537967092']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,a2881a124339d7d50088c5b9778c725316a7003e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344071133/jobs/5537997314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159872571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344059711/jobs/5537972443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159901270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344063845/jobs/5537981730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159893360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344045731/jobs/5537941197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344048649/jobs/5537947699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344076247/jobs/5538008346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344070242/jobs/5537995565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344050775/jobs/5537952282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344064310/jobs/5537982668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344053104/jobs/5537957068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344072770/jobs/5538001047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344053849/jobs/5537958826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344053566/jobs/5537958002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159838916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344061380/jobs/5537976301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159860790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344063483/jobs/5537980884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159828902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344074494/jobs/5538004410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9159843756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344050440/jobs/5537951369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344072440/jobs/5538000218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344046586/jobs/5537943094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,a2881a124339d7d50088c5b9778c725316a7003e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3344058168/jobs/5537968961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-28-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,a2881a124339d7d50088c5b9778c725316a7003e
diff --git a/csv_reports/nightly-packaging-2022-10-29-0.csv b/csv_reports/nightly-packaging-2022-10-29-0.csv
deleted file mode 100644
index f0a8c2325e6..00000000000
--- a/csv_reports/nightly-packaging-2022-10-29-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350763902/jobs/5551784043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9177989898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350765894/jobs/5551787098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9177995137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350761227/jobs/5551779753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9177981511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350754316/jobs/5551768577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350762559/jobs/5551781917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9177985296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350766100/jobs/5551787398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9177984052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3350755214/jobs/5551769895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350756593/jobs/5551771929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9178317868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9178529621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9178459239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9178400091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9178696656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9178471286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9178641211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9178753784'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9178713575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9178562893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9178847857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9178223555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9178766688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9178759412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9178311140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9178235630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9178192458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9178535211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9178522111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9178423888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9178687134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9178320199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9178319038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9178639377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9178302138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9178830984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9178234343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9179071025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9178278416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9178209827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9178597327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350761039/jobs/5551779396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9178004732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350767300/jobs/5551789363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9177990720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350760074/jobs/5551777665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3350764440/jobs/5551784990', 'https://github.com/ursacomputing/crossbow/actions/runs/3350764440/jobs/5551784968', 'https://github.com/ursacomputing/crossbow/actions/runs/3350764440/jobs/5551784943', 'https://github.com/ursacomputing/crossbow/actions/runs/3350764440/jobs/5551784922']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3350754457/jobs/5551768768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3350754984/jobs/5552060405', 'https://github.com/ursacomputing/crossbow/actions/runs/3350754984/jobs/5551769620', 'https://github.com/ursacomputing/crossbow/actions/runs/3350754984/jobs/5551769576', 'https://github.com/ursacomputing/crossbow/actions/runs/3350754984/jobs/5551769524']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-java-jars,github,{},java-jars/github.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350760512/jobs/5551778447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350756017/jobs/5551771124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-python-sdist,github,{},python-sdist/github.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5552120541', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551996493', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551996462', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551996432', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551996403', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551996379', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551996339', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551880805', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551840503', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551840468', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551840433', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551840398', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551840366', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551840330', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551840297', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551840252', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551793655', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551793598', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551793563', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551793504', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551793451', 'https://github.com/ursacomputing/crossbow/actions/runs/3350767578/jobs/5551789844']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350769831/jobs/5551793771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9177997013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350759289/jobs/5551776173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9177999787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350762063/jobs/5551781179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9178004363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350768744/jobs/5551791953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350767136/jobs/5551789032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350759457/jobs/5551776512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350762327/jobs/5551781540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350768912/jobs/5551792209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350764684/jobs/5551785265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350763420/jobs/5551783378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350759853/jobs/5551777208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350754648/jobs/5551769033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350756394/jobs/5551771655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9178001827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350756799/jobs/5551772221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9177999049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350769599/jobs/5551793382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9177982143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350768592/jobs/5551791658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9178003066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350760286/jobs/5551778073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350768038/jobs/5551790629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350765759/jobs/5551786863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3350768269/jobs/5551790990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-29-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
diff --git a/csv_reports/nightly-packaging-2022-10-30-0.csv b/csv_reports/nightly-packaging-2022-10-30-0.csv
deleted file mode 100644
index d2f494a3dcb..00000000000
--- a/csv_reports/nightly-packaging-2022-10-30-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354768857/jobs/5558546086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9185986036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354778483/jobs/5558561346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9186004040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354769157/jobs/5558546575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9186005483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354769496/jobs/5558547057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354763846/jobs/5558537510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9185985423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354771193/jobs/5558549659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9186006724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3354778756/jobs/5558561729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354775847/jobs/5558556917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9186288244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9186781320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9186460759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9186485180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9186311963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9186912310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9186800604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9186548284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9186811673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9186256773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9186259606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9186537903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9186567530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9186239448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9186887772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9186818461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9186244016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9187082661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9186274583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9186266209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9186265124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9186744313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9186558333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9186610413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9186637984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9186770907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9186295215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9186970131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9186467584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9186821436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9186548979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354774371/jobs/5558554762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9186008168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354766327/jobs/5558541968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9185991492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354763261/jobs/5558536728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3354774287/jobs/5558554662', 'https://github.com/ursacomputing/crossbow/actions/runs/3354774287/jobs/5558554632', 'https://github.com/ursacomputing/crossbow/actions/runs/3354774287/jobs/5558554613', 'https://github.com/ursacomputing/crossbow/actions/runs/3354774287/jobs/5558554588']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3354778147/jobs/5558560805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3354772369/jobs/5558860203', 'https://github.com/ursacomputing/crossbow/actions/runs/3354772369/jobs/5558551481', 'https://github.com/ursacomputing/crossbow/actions/runs/3354772369/jobs/5558551453', 'https://github.com/ursacomputing/crossbow/actions/runs/3354772369/jobs/5558551414']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-java-jars,github,{},java-jars/github.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354770479/jobs/5558548538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354768636/jobs/5558545681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-python-sdist,github,{},python-sdist/github.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558906390', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558725806', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558725781', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558725749', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558725722', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558725701', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558725666', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558620497', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558588086', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558588065', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558588051', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558588033', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558588017', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558587992', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558587970', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558587954', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558539774', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558539717', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558539660', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558539593', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558539517', 'https://github.com/ursacomputing/crossbow/actions/runs/3354763057/jobs/5558536379']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354777007/jobs/5558558764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9186002143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354775662/jobs/5558556595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9185994072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354765722/jobs/5558540605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9185999758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354776107/jobs/5558557548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354769858/jobs/5558547644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354777731/jobs/5558560277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354775452/jobs/5558556310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354764229/jobs/5558538019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354770969/jobs/5558549236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354775193/jobs/5558555907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354764774/jobs/5558539130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354777567/jobs/5558559852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354772831/jobs/5558552371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9185990168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354767485/jobs/5558543768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9185988985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354767856/jobs/5558544373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9186005897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354769652/jobs/5558547401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9186010335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354777467/jobs/5558559577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354776712/jobs/5558558360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354770727/jobs/5558548888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3354767673/jobs/5558544077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-30-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
diff --git a/csv_reports/nightly-packaging-2022-10-31-0.csv b/csv_reports/nightly-packaging-2022-10-31-0.csv
deleted file mode 100644
index cc581ed4714..00000000000
--- a/csv_reports/nightly-packaging-2022-10-31-0.csv
+++ /dev/null
@@ -1,83 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359812284/jobs/5568250922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197768999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359814490/jobs/5568255778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197710029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359800052/jobs/5568224289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197686842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359809195/jobs/5568244395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359799643/jobs/5568223490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197695950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359823829/jobs/5568277161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197730307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3359823168/jobs/5568275561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359795461/jobs/5568214661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9198975598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9200425313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9199321610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9200550380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9198668806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9200240816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9199486556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9200410638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9199467234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9199773320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9200240274'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9199218710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9198484433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9199467811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9198479274'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9199661090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9199823372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9200547555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9198473512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9198529515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9198696941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9199666977'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9198799141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9200404661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9198833197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9200892890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9200848503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9198933850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9198827135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9200161584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9199551191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3359808504/jobs/5568242855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197700530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359806050/jobs/5568237698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197736082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359805739/jobs/5568236911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3359820962/jobs/5568270598', 'https://github.com/ursacomputing/crossbow/actions/runs/3359820962/jobs/5568270496', 'https://github.com/ursacomputing/crossbow/actions/runs/3359820962/jobs/5568270414', 'https://github.com/ursacomputing/crossbow/actions/runs/3359820962/jobs/5568270323']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3359807218/jobs/5568240086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3359816211/jobs/5569216717', 'https://github.com/ursacomputing/crossbow/actions/runs/3359816211/jobs/5568259580', 'https://github.com/ursacomputing/crossbow/actions/runs/3359816211/jobs/5568259485', 'https://github.com/ursacomputing/crossbow/actions/runs/3359816211/jobs/5568259352']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-java-jars,github,{},java-jars/github.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359812474/jobs/5568251347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359795849/jobs/5568215359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-python-sdist,github,{},python-sdist/github.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5569248362', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568759200', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568759105', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568758990', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568758868', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568758769', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568758636', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568479122', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568398988', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568398875', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568398754', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568398660', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568398506', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568398388', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568398259', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568398120', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568279239', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568279104', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568278968', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568278841', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568278673', 'https://github.com/ursacomputing/crossbow/actions/runs/3359821312/jobs/5568271190']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359820043/jobs/5568268544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197764063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359802212/jobs/5568229138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197728302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359820541/jobs/5568269392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197680915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359819309/jobs/5568266741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359801529/jobs/5568227417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359797785/jobs/5568219046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359807545/jobs/5568240832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359804274/jobs/5568233550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359819009/jobs/5568265802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359827205/jobs/5568284219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359825898/jobs/5568281189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359822558/jobs/5568273918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359800762/jobs/5568225852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197705513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359824528/jobs/5568278376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197701896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359822244/jobs/5568273124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197733555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359823433/jobs/5568276320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9197753542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359802774/jobs/5568230675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359826507/jobs/5568282620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359797438/jobs/5568218382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3359817583/jobs/5568262551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-10-31-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,97076308d07e447ad52fd4fa026f8d92513b98c9
diff --git a/csv_reports/nightly-packaging-2022-11-01-0.csv b/csv_reports/nightly-packaging-2022-11-01-0.csv
deleted file mode 100644
index a3c958104d6..00000000000
--- a/csv_reports/nightly-packaging-2022-11-01-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368005854/jobs/5586064809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221326458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368007638/jobs/5586068680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221258323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368014384/jobs/5586083265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221300566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368018205/jobs/5586091262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368010148/jobs/5586074241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221264625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368025276/jobs/5586106544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221283586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3368030830/jobs/5586118170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368028576/jobs/5586113434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9223537377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9225267383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9224194199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9222051928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9225403595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9225214496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9222181728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9224192494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9224561934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9223106988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9222201245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9223357850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9223067142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9225762899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9225443007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9222262687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9222134292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9223217887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9224609330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-osx-arm64-clang-py37,failure,['https://github.com/ursacomputing/crossbow/runs/9221443053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-osx-arm64-clang-py37,azure,{'config': 'osx_arm64_numpy1.20python3.7.____cpython'},conda-recipes/azure.osx.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9222292175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.20python3.8.____cpython'},conda-recipes/azure.osx.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9224453624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.20python3.9.____cpython'},conda-recipes/azure.osx.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9223495844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-osx-clang-py37,failure,['https://github.com/ursacomputing/crossbow/runs/9223692797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-osx-clang-py37,azure,{'config': 'osx_64_numpy1.20python3.7.____cpython'},conda-recipes/azure.osx.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9222458775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.20python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9223361850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.20python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9224459569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.20python3.8.____cpython'},conda-recipes/azure.osx.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9225707732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.20python3.9.____cpython'},conda-recipes/azure.osx.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-win-vs2019-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9224695768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-win-vs2019-py310-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-win-vs2019-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9224295826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-win-vs2019-py310-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-win-vs2019-py37-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9222434565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-win-vs2019-py37-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython'},conda-recipes/azure.win.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-win-vs2019-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9222383030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-win-vs2019-py37-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.7.____cpython'},conda-recipes/azure.win.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9222393063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9224380037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-win-vs2019-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9223227575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-win-vs2019-py38-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.8.____cpython'},conda-recipes/azure.win.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-win-vs2019-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9224291035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-win-vs2019-py38-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.8.____cpython'},conda-recipes/azure.win.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-win-vs2019-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9225339007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-win-vs2019-py39-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.9.____cpython'},conda-recipes/azure.win.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-conda-win-vs2019-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9223560967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-azure-conda-win-vs2019-py39-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.9.____cpython'},conda-recipes/azure.win.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368015115/jobs/5586084658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221315828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368034779/jobs/5586125781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221284731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368037133/jobs/5586130332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3368024633/jobs/5586105429', 'https://github.com/ursacomputing/crossbow/actions/runs/3368024633/jobs/5586105319', 'https://github.com/ursacomputing/crossbow/actions/runs/3368024633/jobs/5586105172', 'https://github.com/ursacomputing/crossbow/actions/runs/3368024633/jobs/5586105025']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3368026889/jobs/5586109693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3368007208/jobs/5586813375', 'https://github.com/ursacomputing/crossbow/actions/runs/3368007208/jobs/5586068072', 'https://github.com/ursacomputing/crossbow/actions/runs/3368007208/jobs/5586067959', 'https://github.com/ursacomputing/crossbow/actions/runs/3368007208/jobs/5586067847']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-java-jars,github,{},java-jars/github.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368036193/jobs/5586128508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368033619/jobs/5586123650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-python-sdist,github,{},python-sdist/github.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586998214', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586650851', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586650747', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586650651', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586650548', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586650435', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586650286', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586291190', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586208251', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586208113', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586207976', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586207845', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586207685', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586207592', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586207490', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586207376', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586087494', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586087367', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586087252', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586087183', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586087070', 'https://github.com/ursacomputing/crossbow/actions/runs/3368013172/jobs/5586080726']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368028940/jobs/5586114178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221314305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368023528/jobs/5586102644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221276748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368005142/jobs/5586063415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221278873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368023035/jobs/5586101764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368018840/jobs/5586092769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368016156/jobs/5586086858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368037482/jobs/5586131084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368026083/jobs/5586108143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368032205/jobs/5586120925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368011729/jobs/5586077644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368006598/jobs/5586066358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368010884/jobs/5586075719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368008784/jobs/5586071268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221280878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368036486/jobs/5586129079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221302517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368031103/jobs/5586118790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221318335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368006936/jobs/5586067177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9221275019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368021000/jobs/5586097767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368030431/jobs/5586117372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368013902/jobs/5586082160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3368031939/jobs/5586120317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,16fd7f3fabbe663c161899d197deb66a7ec188b5
diff --git a/csv_reports/nightly-packaging-2022-11-02-0.csv b/csv_reports/nightly-packaging-2022-11-02-0.csv
deleted file mode 100644
index 225f4b84b84..00000000000
--- a/csv_reports/nightly-packaging-2022-11-02-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376034349/jobs/5603297740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244338089'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376025331/jobs/5603278653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244305846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376034098/jobs/5603297111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244304285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376013973/jobs/5603253672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376004664/jobs/5603233695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244332979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376009340/jobs/5603243837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244335304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3376040883/jobs/5603310733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376013556/jobs/5603252803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/9248530923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9247271001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9245207392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9247998364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9247871254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9249371244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9245377407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9248146079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9247573233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9246662428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9249617517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9246843647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9246529461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9245748545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9246849915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9245232683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9248483005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9245441577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9248678258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-osx-arm64-clang-py37,failure,['https://github.com/ursacomputing/crossbow/runs/9245868278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-osx-arm64-clang-py37,azure,{'config': 'osx_arm64_numpy1.20python3.7.____cpython'},conda-recipes/azure.osx.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9249849701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.20python3.8.____cpython'},conda-recipes/azure.osx.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9246613320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.20python3.9.____cpython'},conda-recipes/azure.osx.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9245487298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-osx-clang-py37,failure,['https://github.com/ursacomputing/crossbow/runs/9248811972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-osx-clang-py37,azure,{'config': 'osx_64_numpy1.20python3.7.____cpython'},conda-recipes/azure.osx.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9248385334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.20python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9249303047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.20python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9245672194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.20python3.8.____cpython'},conda-recipes/azure.osx.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9245585694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.20python3.9.____cpython'},conda-recipes/azure.osx.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-win-vs2019-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9247383901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-win-vs2019-py310-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-win-vs2019-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9249160194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-win-vs2019-py310-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-win-vs2019-py37-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9247058893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-win-vs2019-py37-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython'},conda-recipes/azure.win.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-win-vs2019-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9247491239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-win-vs2019-py37-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.7.____cpython'},conda-recipes/azure.win.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9245913703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9249772438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-win-vs2019-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9248489647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-win-vs2019-py38-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.8.____cpython'},conda-recipes/azure.win.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-win-vs2019-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9245859002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-win-vs2019-py38-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.8.____cpython'},conda-recipes/azure.win.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-win-vs2019-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9247144088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-win-vs2019-py39-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.9.____cpython'},conda-recipes/azure.win.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-conda-win-vs2019-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9248440710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-azure-conda-win-vs2019-py39-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.9.____cpython'},conda-recipes/azure.win.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376012596/jobs/5603250614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244309195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376006503/jobs/5603238004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244336153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376023146/jobs/5603273893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3376028146/jobs/5603284788', 'https://github.com/ursacomputing/crossbow/actions/runs/3376028146/jobs/5603284684', 'https://github.com/ursacomputing/crossbow/actions/runs/3376028146/jobs/5603284588', 'https://github.com/ursacomputing/crossbow/actions/runs/3376028146/jobs/5603284495']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3376037494/jobs/5603303714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3376007176/jobs/5604372824', 'https://github.com/ursacomputing/crossbow/actions/runs/3376007176/jobs/5603239651', 'https://github.com/ursacomputing/crossbow/actions/runs/3376007176/jobs/5603239561', 'https://github.com/ursacomputing/crossbow/actions/runs/3376007176/jobs/5603239425']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-java-jars,github,{},java-jars/github.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376030786/jobs/5603290428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376023676/jobs/5603275092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-python-sdist,github,{},python-sdist/github.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5604363590', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603970697', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603970606', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603970495', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603970394', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603970282', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603970125', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603543877', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603449260', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603449129', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603449012', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603448896', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603448763', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603448624', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603448536', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603448374', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603294587', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603294448', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603294341', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603294244', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603294113', 'https://github.com/ursacomputing/crossbow/actions/runs/3376027765/jobs/5603283670']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376026776/jobs/5603281389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244281154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376013232/jobs/5603252106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244294584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376005453/jobs/5603235507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244285591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376009954/jobs/5603245262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376008031/jobs/5603241186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376017331/jobs/5603260948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376005930/jobs/5603236522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376010829/jobs/5603246981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376014450/jobs/5603254568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376040492/jobs/5603309836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376024113/jobs/5603276204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376016754/jobs/5603259347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376012273/jobs/5603249821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244268851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376035115/jobs/5603299266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244320142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376032006/jobs/5603293079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244353090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376005109/jobs/5603234721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9244334055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376036646/jobs/5603301928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376018288/jobs/5603262741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376020396/jobs/5603267807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,a1b161e85a4dce497d65325db945f72bbd20b729
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3376037823/jobs/5603304581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-02-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,a1b161e85a4dce497d65325db945f72bbd20b729
diff --git a/csv_reports/nightly-packaging-2022-11-03-0.csv b/csv_reports/nightly-packaging-2022-11-03-0.csv
deleted file mode 100644
index dbfb1f16953..00000000000
--- a/csv_reports/nightly-packaging-2022-11-03-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384156737/jobs/5620794679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267818645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384171175/jobs/5620823720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267860978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384160053/jobs/5620801311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267857786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384143677/jobs/5620767625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384169796/jobs/5620821149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267778928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384150200/jobs/5620781302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267836870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3384155913/jobs/5620793025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384175372/jobs/5620832554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9267832632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9269159542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9270374953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9271222572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9269073511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9269475264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/9269990138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/9270593049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9271077368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9268920712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9271601499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9272716906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9270262749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9272912225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9270358549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py39-cpu,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9270315055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9271176026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9271785100'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-osx-arm64-clang-py37,failure,['https://github.com/ursacomputing/crossbow/runs/9268081690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-osx-arm64-clang-py37,azure,{'config': 'osx_arm64_numpy1.20python3.7.____cpython'},conda-recipes/azure.osx.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/9272064814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.20python3.8.____cpython'},conda-recipes/azure.osx.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/9269081988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.20python3.9.____cpython'},conda-recipes/azure.osx.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9269158804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-osx-clang-py37,success,['https://github.com/ursacomputing/crossbow/runs/9271796561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-osx-clang-py37,azure,{'config': 'osx_64_numpy1.20python3.7.____cpython'},conda-recipes/azure.osx.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/9271498667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.20python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/9270940202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.20python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/9269389865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.20python3.8.____cpython'},conda-recipes/azure.osx.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/9272985802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.20python3.9.____cpython'},conda-recipes/azure.osx.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-win-vs2019-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9268863748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-win-vs2019-py310-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-win-vs2019-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9269008581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-win-vs2019-py310-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-win-vs2019-py37-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9272873648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-win-vs2019-py37-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython'},conda-recipes/azure.win.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-win-vs2019-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9272670782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-win-vs2019-py37-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.7.____cpython'},conda-recipes/azure.win.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9272497546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9272469074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-win-vs2019-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9271494574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-win-vs2019-py38-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.8.____cpython'},conda-recipes/azure.win.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-win-vs2019-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9270461995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-win-vs2019-py38-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.8.____cpython'},conda-recipes/azure.win.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-win-vs2019-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9272334296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-win-vs2019-py39-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.9.____cpython'},conda-recipes/azure.win.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-conda-win-vs2019-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9269831306'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-azure-conda-win-vs2019-py39-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.9.____cpython'},conda-recipes/azure.win.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384145095/jobs/5620770626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267809453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384165914/jobs/5620813328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267855862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384152133/jobs/5620785356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3384158263/jobs/5620798202', 'https://github.com/ursacomputing/crossbow/actions/runs/3384158263/jobs/5620798113', 'https://github.com/ursacomputing/crossbow/actions/runs/3384158263/jobs/5620798035', 'https://github.com/ursacomputing/crossbow/actions/runs/3384158263/jobs/5620797957']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3384148081/jobs/5620777188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3384176323/jobs/5621687808', 'https://github.com/ursacomputing/crossbow/actions/runs/3384176323/jobs/5620834938', 'https://github.com/ursacomputing/crossbow/actions/runs/3384176323/jobs/5620834806', 'https://github.com/ursacomputing/crossbow/actions/runs/3384176323/jobs/5620834680']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-java-jars,github,{},java-jars/github.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384165616/jobs/5620812777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384175939/jobs/5620833886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-python-sdist,github,{},python-sdist/github.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621731509', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621340132', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621339998', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621339867', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621339733', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621339628', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621339503', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621087229', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621003606', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621003526', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621003437', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621003309', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621003206', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621003114', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621003000', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5621002848', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5620792124', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5620792006', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5620791893', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5620791778', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5620791649', 'https://github.com/ursacomputing/crossbow/actions/runs/3384151437/jobs/5620784108']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384143250/jobs/5620766490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267826921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384154334/jobs/5620789559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267845792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384150481/jobs/5620782060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267814030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384159017/jobs/5620799457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384175066/jobs/5620831872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384144259/jobs/5620768978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384166871/jobs/5620815027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384152942/jobs/5620786908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384175778/jobs/5620833488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384169324/jobs/5620820187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384168512/jobs/5620818341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384166414/jobs/5620814199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384142604/jobs/5620765242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267806211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384148943/jobs/5620778809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267817382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384173445/jobs/5620828626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267830891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384177735/jobs/5620837128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9267811723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384157129/jobs/5620795541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384149814/jobs/5620780503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384145456/jobs/5620771420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3384172756/jobs/5620827380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-03-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5e53978b56aa13f9c033f2e849cc22f2aed6e2d3
diff --git a/csv_reports/nightly-packaging-2022-11-04-0.csv b/csv_reports/nightly-packaging-2022-11-04-0.csv
deleted file mode 100644
index 8bd15d6a059..00000000000
--- a/csv_reports/nightly-packaging-2022-11-04-0.csv
+++ /dev/null
@@ -1,90 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392350099/jobs/5638454008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9291488680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392351667/jobs/5638457341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9291472663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392362309/jobs/5638480768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9291449644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392354107/jobs/5638462482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392372693/jobs/5638504042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9291471271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392356932/jobs/5638469012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9291463500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3392370566/jobs/5638499508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392358830/jobs/5638472876'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9292747341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9293754429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9295005228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9295960785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9293976397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9292650392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py37-cpu-r40,success,['https://github.com/ursacomputing/crossbow/runs/9293854906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py37-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/9295429248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9293312504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py37-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9294890874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.7.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9296313455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9295729729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9292409090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py38-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9292419717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.8.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9292698291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_cuda_compiler_versionNonenumpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9292418034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version10cuda_compiler_versionNonecxx_compiler_version10numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9293607254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-linux-gcc-py39-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9293776703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.20python3.9.____cpython'},conda-recipes/azure.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9296459147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-osx-arm64-clang-py37,failure,['https://github.com/ursacomputing/crossbow/runs/9295642330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-osx-arm64-clang-py37,azure,{'config': 'osx_arm64_numpy1.20python3.7.____cpython'},conda-recipes/azure.osx.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-osx-arm64-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/9292618987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.20python3.8.____cpython'},conda-recipes/azure.osx.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-osx-arm64-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/9295562778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.20python3.9.____cpython'},conda-recipes/azure.osx.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9295330437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-osx-clang-py37,success,['https://github.com/ursacomputing/crossbow/runs/9294313083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-osx-clang-py37,azure,{'config': 'osx_64_numpy1.20python3.7.____cpython'},conda-recipes/azure.osx.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-osx-clang-py37-r40,success,['https://github.com/ursacomputing/crossbow/runs/9297084146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.20python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-osx-clang-py37-r41,success,['https://github.com/ursacomputing/crossbow/runs/9296380798'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.20python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-osx-clang-py38,success,['https://github.com/ursacomputing/crossbow/runs/9292694176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.20python3.8.____cpython'},conda-recipes/azure.osx.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-osx-clang-py39,success,['https://github.com/ursacomputing/crossbow/runs/9295223840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.20python3.9.____cpython'},conda-recipes/azure.osx.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-win-vs2019-py310-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9294246806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-win-vs2019-py310-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-win-vs2019-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9294823536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-win-vs2019-py310-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-win-vs2019-py37-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9292954299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-win-vs2019-py37-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython'},conda-recipes/azure.win.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-win-vs2019-py37-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9294068311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-win-vs2019-py37-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.7.____cpython'},conda-recipes/azure.win.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9293320183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9295262135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-win-vs2019-py38-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9294619029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-win-vs2019-py38-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.8.____cpython'},conda-recipes/azure.win.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-win-vs2019-py38-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9293084575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-win-vs2019-py38-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.8.____cpython'},conda-recipes/azure.win.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-win-vs2019-py39-cpu,success,['https://github.com/ursacomputing/crossbow/runs/9295921536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-win-vs2019-py39-cpu,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.20python3.9.____cpython'},conda-recipes/azure.win.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-conda-win-vs2019-py39-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9294996689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-azure-conda-win-vs2019-py39-cuda,azure,{'config': 'win_64_cuda_compiler_version10.2numpy1.20python3.9.____cpython'},conda-recipes/azure.win.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392363251/jobs/5638482836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9291412010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392359570/jobs/5638474701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9291482561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392361398/jobs/5638478766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3392369572/jobs/5638497181', 'https://github.com/ursacomputing/crossbow/actions/runs/3392369572/jobs/5638497076', 'https://github.com/ursacomputing/crossbow/actions/runs/3392369572/jobs/5638496954', 'https://github.com/ursacomputing/crossbow/actions/runs/3392369572/jobs/5638496858']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3392359252/jobs/5638473900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3392378509/jobs/5639375093', 'https://github.com/ursacomputing/crossbow/actions/runs/3392378509/jobs/5638516613', 'https://github.com/ursacomputing/crossbow/actions/runs/3392378509/jobs/5638516534', 'https://github.com/ursacomputing/crossbow/actions/runs/3392378509/jobs/5638516404']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-java-jars,github,{},java-jars/github.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392354892/jobs/5638464042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392363430/jobs/5638483331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-python-sdist,github,{},python-sdist/github.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5639451394', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5639100929', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5639100804', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5639100689', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5639100554', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5639100422', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5639100173', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638723630', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638633165', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638633043', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638632910', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638632722', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638632553', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638632437', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638632307', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638632185', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638466901', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638466792', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638466703', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638466616', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638466478', 'https://github.com/ursacomputing/crossbow/actions/runs/3392352510/jobs/5638459005']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392354517/jobs/5638463347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9291455235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392375347/jobs/5638509897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9291403933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392370795/jobs/5638499961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9291443827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392370048/jobs/5638498259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-macos-big-sur-cp310-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392359842/jobs/5638475508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-macos-big-sur-cp310-universal2,github,"{'arch': 'universal2', 'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392350512/jobs/5638455029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392366230/jobs/5638489248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-macos-big-sur-cp39-universal2,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392368783/jobs/5638495143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-macos-big-sur-cp39-universal2,github,"{'arch': 'universal2', 'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392363789/jobs/5638484035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392353683/jobs/5638461710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392361789/jobs/5638479613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392375016/jobs/5638509110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392355292/jobs/5638464848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9291477005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392365177/jobs/5638486877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9291408108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392356720/jobs/5638468408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9291465607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392366793/jobs/5638491013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9291424883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392348862/jobs/5638451340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3392355599/jobs/5638465623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392360469/jobs/5638476902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3392364908/jobs/5638486379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-04-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,8e3a1e1b7c17213eb8b79fba49c496de6199fd50
diff --git a/csv_reports/nightly-packaging-2022-11-05-0.csv b/csv_reports/nightly-packaging-2022-11-05-0.csv
deleted file mode 100644
index 958fdc6b277..00000000000
--- a/csv_reports/nightly-packaging-2022-11-05-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399382928/jobs/5653098284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310741277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399397098/jobs/5653120329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310734368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399393474/jobs/5653114960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310730507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399395633/jobs/5653118239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399393685/jobs/5653115253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310740660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399395798/jobs/5653118490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310728964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3399393990/jobs/5653115656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399396200/jobs/5653119023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9310744508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310737234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9310773437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9311086355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9311152662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310747145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9310789852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9310738998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9310736088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9310742898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310750205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9310825504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9310810007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9310761670'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310787335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9310798125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9310750940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9310745915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9311139057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9310888270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9310809755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9311121279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9310775248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9310783206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9310854361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9310903627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9311060606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9310792547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9310859773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9310823105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9310779461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399391818/jobs/5653112388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310724639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399392512/jobs/5653113403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310727551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399391252/jobs/5653111494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3399386676/jobs/5653104426', 'https://github.com/ursacomputing/crossbow/actions/runs/3399386676/jobs/5653104383', 'https://github.com/ursacomputing/crossbow/actions/runs/3399386676/jobs/5653104326', 'https://github.com/ursacomputing/crossbow/actions/runs/3399386676/jobs/5653104284']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3399386466/jobs/5653103845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3399383136/jobs/5654127784', 'https://github.com/ursacomputing/crossbow/actions/runs/3399383136/jobs/5653098724', 'https://github.com/ursacomputing/crossbow/actions/runs/3399383136/jobs/5653098691', 'https://github.com/ursacomputing/crossbow/actions/runs/3399383136/jobs/5653098652']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-java-jars,github,{},java-jars/github.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399391738/jobs/5653112220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399389543/jobs/5653108778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-python-sdist,github,{},python-sdist/github.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653434306', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653259823', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653259754', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653259686', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653259617', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653259555', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653259466', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653180109', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653146922', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653146885', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653146851', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653146807', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653146759', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653146725', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653146677', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653146627', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653103913', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653103886', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653103860', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653103841', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653103812', 'https://github.com/ursacomputing/crossbow/actions/runs/3399384522/jobs/5653100585']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399382694/jobs/5653097950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310729394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399396731/jobs/5653119859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310722763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399383795/jobs/5653099606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9310743002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399388451/jobs/5653107187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399383319/jobs/5653098951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399386193/jobs/5653103293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399390770/jobs/5653110859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399388332/jobs/5653106989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399393333/jobs/5653114705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399389283/jobs/5653108398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399385907/jobs/5653102833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399394283/jobs/5653116095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399397417/jobs/5653120832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9310721760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399396568/jobs/5653119559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9310733303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399382492/jobs/5653097638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9310737033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399392739/jobs/5653113759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9310728204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399387461/jobs/5653105494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9310741563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399381760/jobs/5653096644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399389959/jobs/5653109554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399393261/jobs/5653114541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399391403/jobs/5653111715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3399389076/jobs/5653108045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-05-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,2cac16b7c5c7732d36a9c15147b1135ad5256e13
diff --git a/csv_reports/nightly-packaging-2022-11-08-0.csv b/csv_reports/nightly-packaging-2022-11-08-0.csv
deleted file mode 100644
index ab5cd7951d0..00000000000
--- a/csv_reports/nightly-packaging-2022-11-08-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417747516/jobs/5689236634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356347979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417722405/jobs/5689184496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356333011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417744538/jobs/5689231122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356369535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417729981/jobs/5689200101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417744141/jobs/5689230222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356368308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417718811/jobs/5689177027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356303607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3417745929/jobs/5689233711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417737597/jobs/5689216621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9356625262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356683028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9356560866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9357533455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9357896232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356583598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9356672861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9356809568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9356522359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9356610081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356380335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9356737022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9356721439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9356826711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356803602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9356641313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9356331325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9356628719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9357900648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9356598604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9356748190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9358072351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9356486082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9356542606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9356572047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9356781926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9357650231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9356481175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9356469167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9356787129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9356414672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417736484/jobs/5689214016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356354590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3417734106/jobs/5689208990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356335552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417710574/jobs/5689159223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3417717421/jobs/5689174552', 'https://github.com/ursacomputing/crossbow/actions/runs/3417717421/jobs/5689174459', 'https://github.com/ursacomputing/crossbow/actions/runs/3417717421/jobs/5689174368', 'https://github.com/ursacomputing/crossbow/actions/runs/3417717421/jobs/5689174217']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3417714055/jobs/5689166750'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3417739015/jobs/5690183032', 'https://github.com/ursacomputing/crossbow/actions/runs/3417739015/jobs/5689219668', 'https://github.com/ursacomputing/crossbow/actions/runs/3417739015/jobs/5689219562', 'https://github.com/ursacomputing/crossbow/actions/runs/3417739015/jobs/5689219467', 'https://github.com/ursacomputing/crossbow/actions/runs/3417739015/jobs/5689219369']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-java-jars,github,{},java-jars/github.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417724620/jobs/5689188767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417712891/jobs/5689164068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-python-sdist,github,{},python-sdist/github.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5690618411', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5690175746', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5690175511', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5690174875', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5690174570', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5690174384', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5690173452', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689570656', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689453379', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689453261', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689453160', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689453049', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689452948', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689452831', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689452704', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689452561', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689211163', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689211033', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689210894', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689210742', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689210579', 'https://github.com/ursacomputing/crossbow/actions/runs/3417730853/jobs/5689201960']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417711898/jobs/5689161943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356326686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417740284/jobs/5689222046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356343428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417736133/jobs/5689213230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9356301184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417733045/jobs/5689206519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417746928/jobs/5689235677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417725866/jobs/5689191505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417717765/jobs/5689175107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417741852/jobs/5689225495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417716732/jobs/5689172410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417728356/jobs/5689196516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417743820/jobs/5689229483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417733802/jobs/5689208238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417738471/jobs/5689218352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9356340219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417739459/jobs/5689220300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9356365813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417719211/jobs/5689177848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9356300111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417747781/jobs/5689237335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9356353072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417729623/jobs/5689199319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9356306958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417726901/jobs/5689193681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417729197/jobs/5689198338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417745327/jobs/5689232841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417714432/jobs/5689167536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3417721958/jobs/5689183548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-08-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5889c78e344688f8fa8100ecdf254cd701ee3445
diff --git a/csv_reports/nightly-packaging-2022-11-09-0.csv b/csv_reports/nightly-packaging-2022-11-09-0.csv
deleted file mode 100644
index d044df35076..00000000000
--- a/csv_reports/nightly-packaging-2022-11-09-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426577917/jobs/5708552815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382235666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426586613/jobs/5708570510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382166607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426562091/jobs/5708519692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382218213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426591141/jobs/5708579822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426583018/jobs/5708563282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382219435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426572014/jobs/5708540577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382256878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3426557228/jobs/5708509647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426564663/jobs/5708525535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9382223197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382427611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9382260476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9383500709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9383758228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382509805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9382415379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9382461060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9382380115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9382610190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382263923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9382470480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9382342910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9382228509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382300628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9382559104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9382651736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9382213600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9383850182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9382459057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9382801029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9383596448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9382381904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9382338771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9382461578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9382683107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9383651341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9382637412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9382341921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9382365984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9382599882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426580943/jobs/5708559347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382251029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426582454/jobs/5708562031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382179296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3426573549/jobs/5708543544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3426558502/jobs/5708512839', 'https://github.com/ursacomputing/crossbow/actions/runs/3426558502/jobs/5708512722', 'https://github.com/ursacomputing/crossbow/actions/runs/3426558502/jobs/5708512618', 'https://github.com/ursacomputing/crossbow/actions/runs/3426558502/jobs/5708512503']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3426556791/jobs/5708508730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3426575179/jobs/5709078319', 'https://github.com/ursacomputing/crossbow/actions/runs/3426575179/jobs/5708547409', 'https://github.com/ursacomputing/crossbow/actions/runs/3426575179/jobs/5708547303', 'https://github.com/ursacomputing/crossbow/actions/runs/3426575179/jobs/5708547217', 'https://github.com/ursacomputing/crossbow/actions/runs/3426575179/jobs/5708547073']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-java-jars,github,{},java-jars/github.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426574533/jobs/5708545515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426568038/jobs/5708532552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-python-sdist,github,{},python-sdist/github.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5709526827', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5709039180', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5709039039', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5709038895', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5709038743', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5709038521', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5709038339', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708791620', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708687637', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708687535', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708687447', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708687352', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708687215', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708687091', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708686979', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708686873', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708552016', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708551916', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708551834', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708551746', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708551586', 'https://github.com/ursacomputing/crossbow/actions/runs/3426572571/jobs/5708541523']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426589579/jobs/5708576515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382256091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426568522/jobs/5708533780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382170479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426587453/jobs/5708572118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9382258025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426568902/jobs/5708534243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426576846/jobs/5708550508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426561609/jobs/5708518730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426583461/jobs/5708564211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426566033/jobs/5708528103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426590646/jobs/5708578876'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426579597/jobs/5708556431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426588274/jobs/5708573753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426591637/jobs/5708580732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426558102/jobs/5708511490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9382236870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426577396/jobs/5708551779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9382223475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426570393/jobs/5708537274'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9382227960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426585710/jobs/5708568829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9382187562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426593434/jobs/5708584232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9382198150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426571278/jobs/5708538970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426579113/jobs/5708555360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426589116/jobs/5708575598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426561116/jobs/5708517862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3426584403/jobs/5708566052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-09-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5182d62f86bd45aee3a3eb6b7ac891c40ca50c88
diff --git a/csv_reports/nightly-packaging-2022-11-10-0.csv b/csv_reports/nightly-packaging-2022-11-10-0.csv
deleted file mode 100644
index 6003fad7eef..00000000000
--- a/csv_reports/nightly-packaging-2022-11-10-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435249270/jobs/5727398241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407319109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435258111/jobs/5727417375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407338498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435253760/jobs/5727408375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407289182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435244240/jobs/5727387627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435237884/jobs/5727373482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407321250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435247562/jobs/5727394486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407307822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3435242887/jobs/5727384815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435258519/jobs/5727418202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9407332448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407341988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9407330730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9408741487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9408810025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407353438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9407386939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9407389301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9407353936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9407379154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407630530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9407430515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9407391838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9407468366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407648092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9407501763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9407341578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9407344190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9408714072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9407713925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9407555649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9408725953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9407647563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9407667732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9407708701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9407596381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9408692451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9407464878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9407478988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9407428115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9407581097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435248483/jobs/5727396334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407298369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435264479/jobs/5727430276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407328402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3435239348/jobs/5727376994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3435250422/jobs/5727401285', 'https://github.com/ursacomputing/crossbow/actions/runs/3435250422/jobs/5727401189', 'https://github.com/ursacomputing/crossbow/actions/runs/3435250422/jobs/5727401084', 'https://github.com/ursacomputing/crossbow/actions/runs/3435250422/jobs/5727400976']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3435231299/jobs/5727359914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3435231059/jobs/5727983324', 'https://github.com/ursacomputing/crossbow/actions/runs/3435231059/jobs/5727359592', 'https://github.com/ursacomputing/crossbow/actions/runs/3435231059/jobs/5727359472', 'https://github.com/ursacomputing/crossbow/actions/runs/3435231059/jobs/5727359360', 'https://github.com/ursacomputing/crossbow/actions/runs/3435231059/jobs/5727359252']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-java-jars,github,{},java-jars/github.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435234276/jobs/5727365891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435247156/jobs/5727393637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-python-sdist,github,{},python-sdist/github.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5728715465', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5728299951', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5728299839', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5728299743', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5728299644', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5728299508', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5728299384', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727688377', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727582732', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727582621', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727582515', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727582401', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727582269', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727582162', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727582017', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727581858', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727422194', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727422054', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727421907', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727421785', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727421640', 'https://github.com/ursacomputing/crossbow/actions/runs/3435255854/jobs/5727412678']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435262283/jobs/5727425896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407292517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435261753/jobs/5727424923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407380764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435256378/jobs/5727413773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9407328948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435236929/jobs/5727371493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435259408/jobs/5727419956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435256571/jobs/5727414210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435254567/jobs/5727410130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435266175/jobs/5727433742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435253436/jobs/5727407550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435260518/jobs/5727422361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435241760/jobs/5727382375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435240045/jobs/5727378935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435233794/jobs/5727364996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9407349738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435256948/jobs/5727415040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9407370357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435243677/jobs/5727386571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9407374972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435238361/jobs/5727374603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9407297314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435264052/jobs/5727429381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9407318079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435246838/jobs/5727392960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3435251928/jobs/5727404449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435251081/jobs/5727402622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435248895/jobs/5727397281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3435265008/jobs/5727431366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-10-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4e99f59dc111b0957a468ecaf1a6f865078be1c9
diff --git a/csv_reports/nightly-packaging-2022-11-11-0.csv b/csv_reports/nightly-packaging-2022-11-11-0.csv
deleted file mode 100644
index c747da97364..00000000000
--- a/csv_reports/nightly-packaging-2022-11-11-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443646871/jobs/5745404542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431126745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443669417/jobs/5745449117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431174581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443659293/jobs/5745429962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431180150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443651958/jobs/5745415074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443647292/jobs/5745405281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431138147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443667822/jobs/5745446167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431154284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443650736/jobs/5745412511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443662373/jobs/5745435703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9431170352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431172458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9431179359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9432151109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9432228588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431381015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9431445039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9431173418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9431203370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9431206774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431423816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9431237498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9431328186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9431168626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431438074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9431236559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9431404685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9431161006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9432563192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9431386715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9431372573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9432572290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9431292951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9431405941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9431597105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9431345455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9432158020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9431564840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9431299042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9431290792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9431313759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443657855/jobs/5745427359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431205015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443658393/jobs/5745428273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431204270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3443638573/jobs/5745387266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3443649248/jobs/5745409937', 'https://github.com/ursacomputing/crossbow/actions/runs/3443649248/jobs/5745409835', 'https://github.com/ursacomputing/crossbow/actions/runs/3443649248/jobs/5745409722', 'https://github.com/ursacomputing/crossbow/actions/runs/3443649248/jobs/5745409632']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3443644238/jobs/5745398873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3443658783/jobs/5745914801', 'https://github.com/ursacomputing/crossbow/actions/runs/3443658783/jobs/5745429156', 'https://github.com/ursacomputing/crossbow/actions/runs/3443658783/jobs/5745429095', 'https://github.com/ursacomputing/crossbow/actions/runs/3443658783/jobs/5745429005', 'https://github.com/ursacomputing/crossbow/actions/runs/3443658783/jobs/5745428928']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-java-jars,github,{},java-jars/github.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443650192/jobs/5745411414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443639226/jobs/5745388651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-python-sdist,github,{},python-sdist/github.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5746509115', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5746166313', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5746166203', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5746166068', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5746165909', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5746165805', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5746165670', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745702313', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745617611', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745617528', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745617442', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745617360', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745617239', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745617123', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745616996', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745616855', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745408425', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745408348', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745408273', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745408192', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745408105', 'https://github.com/ursacomputing/crossbow/actions/runs/3443645552/jobs/5745401721']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443662884/jobs/5745436989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431162553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443642982/jobs/5745396351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431163798'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443661846/jobs/5745434475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9431134875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443644542/jobs/5745399486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443667454/jobs/5745445567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443660718/jobs/5745432389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443645755/jobs/5745402281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443668785/jobs/5745447737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443655656/jobs/5745422639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443661289/jobs/5745433416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443667032/jobs/5745444740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443648996/jobs/5745409111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443669103/jobs/5745448393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9431194072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443638157/jobs/5745386437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9431191444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443642028/jobs/5745394254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9431164904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443640872/jobs/5745392017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9431180832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443665787/jobs/5745442411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9431167145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443645139/jobs/5745400651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443666029/jobs/5745442990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443656146/jobs/5745423942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443646502/jobs/5745403808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3443648371/jobs/5745407597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-11-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
diff --git a/csv_reports/nightly-packaging-2022-11-12-0.csv b/csv_reports/nightly-packaging-2022-11-12-0.csv
deleted file mode 100644
index 2fe044b0046..00000000000
--- a/csv_reports/nightly-packaging-2022-11-12-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3450251532/jobs/5758730529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448508600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450253281/jobs/5758733055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448507331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450252064/jobs/5758731284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448494351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450251373/jobs/5758730255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450254073/jobs/5758734214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448511409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450245608/jobs/5758721034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448513141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450255876/jobs/5758736955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450258134/jobs/5758740849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9448536751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448499594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9448501948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9448909387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9448840021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448518839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9448586426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9448563430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9448587324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9448598311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448570553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9448504844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9448505129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9448504164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448547937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9448529252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9448515324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9448502608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9448824219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9448591468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9448570142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9448839736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9448640338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9448550689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9448669578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9448602577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9448905623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9448632639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9448556307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9448523985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9448589443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450247127/jobs/5758723687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448508984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450249190/jobs/5758727094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448513650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3450249071/jobs/5758726865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3450255645/jobs/5758736667', 'https://github.com/ursacomputing/crossbow/actions/runs/3450255645/jobs/5758736627', 'https://github.com/ursacomputing/crossbow/actions/runs/3450255645/jobs/5758736598', 'https://github.com/ursacomputing/crossbow/actions/runs/3450255645/jobs/5758736559']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3450245255/jobs/5758720389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3450250476/jobs/5758937615', 'https://github.com/ursacomputing/crossbow/actions/runs/3450250476/jobs/5758729060', 'https://github.com/ursacomputing/crossbow/actions/runs/3450250476/jobs/5758729011', 'https://github.com/ursacomputing/crossbow/actions/runs/3450250476/jobs/5758728971', 'https://github.com/ursacomputing/crossbow/actions/runs/3450250476/jobs/5758728919']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-java-jars,github,{},java-jars/github.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450250994/jobs/5758729711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450250019/jobs/5758728308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-python-sdist,github,{},python-sdist/github.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5759064488', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758920060', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758920019', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758919970', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758919921', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758919878', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758919815', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758813600', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758783336', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758783311', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758783284', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758783246', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758783215', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758783181', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758783139', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758783101', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758736816', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758736774', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758736730', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758736692', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758736644', 'https://github.com/ursacomputing/crossbow/actions/runs/3450254216/jobs/5758734434']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450258010/jobs/5758740612'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448500451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450245710/jobs/5758721283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448513304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450246575/jobs/5758722737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9448496687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450250832/jobs/5758729457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450246855/jobs/5758723209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450245460/jobs/5758720735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450243731/jobs/5758717849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450253852/jobs/5758733900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450254839/jobs/5758735332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450252766/jobs/5758732277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450253694/jobs/5758733672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450244615/jobs/5758719317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450247442/jobs/5758724167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9448503737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450245994/jobs/5758721762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9448506953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450248738/jobs/5758726290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9448512001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450244148/jobs/5758718638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9448492722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450256545/jobs/5758738297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9448508279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450256178/jobs/5758737619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450243534/jobs/5758717541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450251976/jobs/5758731169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450251193/jobs/5758730003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3450245118/jobs/5758720144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-12-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
diff --git a/csv_reports/nightly-packaging-2022-11-13-0.csv b/csv_reports/nightly-packaging-2022-11-13-0.csv
deleted file mode 100644
index 60272ee4d5c..00000000000
--- a/csv_reports/nightly-packaging-2022-11-13-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454527463/jobs/5765889288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9456999980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454526654/jobs/5765887972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9457012779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454521788/jobs/5765880114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9457009256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454520696/jobs/5765878318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454518500/jobs/5765874496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9456993793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454517848/jobs/5765873305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9456997138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454515267/jobs/5765868798'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454525287/jobs/5765885775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9457126215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9457126323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9457049390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9457433962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9457385436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9457075993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9457035630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9457020399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9457118628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9457015197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9457105462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9457065186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9457015010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9457062202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9457109856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9457119274'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9457011773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9457102119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9457458983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9457104330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9457088711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9457478972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9457109502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9457118827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9457086695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9457093010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9457498505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9457051991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9457059177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9457050886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9457053974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454515821/jobs/5765869800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9456994969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454519929/jobs/5765876934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9457013283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3454514831/jobs/5765868043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3454516723/jobs/5765871463', 'https://github.com/ursacomputing/crossbow/actions/runs/3454516723/jobs/5765871421', 'https://github.com/ursacomputing/crossbow/actions/runs/3454516723/jobs/5765871383', 'https://github.com/ursacomputing/crossbow/actions/runs/3454516723/jobs/5765871344']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3454523361/jobs/5765882562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3454515495/jobs/5766056864', 'https://github.com/ursacomputing/crossbow/actions/runs/3454515495/jobs/5765869299', 'https://github.com/ursacomputing/crossbow/actions/runs/3454515495/jobs/5765869253', 'https://github.com/ursacomputing/crossbow/actions/runs/3454515495/jobs/5765869211', 'https://github.com/ursacomputing/crossbow/actions/runs/3454515495/jobs/5765869182']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-java-jars,github,{},java-jars/github.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454528724/jobs/5765891562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454530855/jobs/5765895540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-python-sdist,github,{},python-sdist/github.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5766259632', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5766069440', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5766069412', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5766069382', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5766069339', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5766069280', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5766069210', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765996857', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765960602', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765960578', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765960548', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765960508', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765960481', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765960445', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765960412', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765960365', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765897868', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765897831', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765897794', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765897759', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765897716', 'https://github.com/ursacomputing/crossbow/actions/runs/3454530495/jobs/5765894896']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454529583/jobs/5765893202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9457016517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454513562/jobs/5765866025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9457025212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3454525674/jobs/5765886411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9457014766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454528108/jobs/5765890410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454522407/jobs/5765881065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454522002/jobs/5765880438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454529801/jobs/5765893561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454527186/jobs/5765888905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454520291/jobs/5765877622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454529433/jobs/5765892908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454528924/jobs/5765891979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454518320/jobs/5765874187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454515749/jobs/5765869638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9457022566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454519554/jobs/5765876293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9457020932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454529272/jobs/5765892602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9457014191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454521602/jobs/5765879768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9457024007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454525431/jobs/5765886058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9456996380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454518730/jobs/5765874898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454517317/jobs/5765872316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3454521134/jobs/5765879026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454517090/jobs/5765871945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3454528361/jobs/5765890835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-13-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,fcca792c0fa298d5375196eebc6713a28d0f778a
diff --git a/csv_reports/nightly-packaging-2022-11-14-0.csv b/csv_reports/nightly-packaging-2022-11-14-0.csv
deleted file mode 100644
index c2c3ed5fe54..00000000000
--- a/csv_reports/nightly-packaging-2022-11-14-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459787820/jobs/5775576437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468825556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459788249/jobs/5775577264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468775976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459809219/jobs/5775622913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468772286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459816294/jobs/5775638733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459806770/jobs/5775617755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468817458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459810985/jobs/5775626749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468794316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459798840/jobs/5775600102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459801183/jobs/5775605543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9469036046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9469133597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9468780785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9469797976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9469945774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468784145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9469082190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9468819111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9468783267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9469187649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9469117699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9468819963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9468779854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9469152296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468958579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9469003905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9469079328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9468863770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9470527358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9469041904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9469062485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9470146264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9469400858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9468906601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9469110918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9468995650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9470180489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9469126394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9469276446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9469354678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9468910350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459797978/jobs/5775598199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468785938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459788751/jobs/5775578234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468749018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3459809612/jobs/5775623796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3459812563/jobs/5775630459', 'https://github.com/ursacomputing/crossbow/actions/runs/3459812563/jobs/5775630371', 'https://github.com/ursacomputing/crossbow/actions/runs/3459812563/jobs/5775630270', 'https://github.com/ursacomputing/crossbow/actions/runs/3459812563/jobs/5775630183']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3459800781/jobs/5775604582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3459807310/jobs/5776258068', 'https://github.com/ursacomputing/crossbow/actions/runs/3459807310/jobs/5775619201', 'https://github.com/ursacomputing/crossbow/actions/runs/3459807310/jobs/5775619130', 'https://github.com/ursacomputing/crossbow/actions/runs/3459807310/jobs/5775619021', 'https://github.com/ursacomputing/crossbow/actions/runs/3459807310/jobs/5775618840']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-java-jars,github,{},java-jars/github.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459815477/jobs/5775636685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459810053/jobs/5775624825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-python-sdist,github,{},python-sdist/github.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5776725622', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5776056529', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5776056369', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5776056231', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5776056105', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5776055982', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5776055807', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775822690', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775718172', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775718074', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775717983', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775717892', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775717789', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775717652', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775717552', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775717424', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775589309', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775589181', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775589054', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775588934', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775588798', 'https://github.com/ursacomputing/crossbow/actions/runs/3459789547/jobs/5775579892']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459813224/jobs/5775631513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468765445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459808868/jobs/5775622095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468758763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459815920/jobs/5775637828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9468771019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459808081/jobs/5775620412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459811326/jobs/5775627539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459791582/jobs/5775584507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459816663/jobs/5775639630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459815002/jobs/5775635600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459782083/jobs/5775563563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459807674/jobs/5775619663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459805046/jobs/5775614169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459796183/jobs/5775594105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459802461/jobs/5775608419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9468769649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459806265/jobs/5775616805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9468769825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459803835/jobs/5775611474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9468784793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459799655/jobs/5775601989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9468833410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459783545/jobs/5775566964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9468744478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459798432/jobs/5775599235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459796656/jobs/5775595142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459793636/jobs/5775588896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459797453/jobs/5775597037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3459805421/jobs/5775614978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,9d86ede69af14eacc7968684b7e9535cfc8e3907
diff --git a/csv_reports/nightly-packaging-2022-11-15-0.csv b/csv_reports/nightly-packaging-2022-11-15-0.csv
deleted file mode 100644
index 2025f032a2c..00000000000
--- a/csv_reports/nightly-packaging-2022-11-15-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468788609/jobs/5795005008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494370175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468785215/jobs/5794997787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494350405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468762911/jobs/5794948584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494414862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468769706/jobs/5794963343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468765906/jobs/5794954910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494418745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468763511/jobs/5794949810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494426178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468789956/jobs/5795007762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468765025/jobs/5794952944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9494719782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9494420733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9494669041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9495684417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9495867413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9494469968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9494425537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9494402827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9494389788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9494462346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9494706875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9494385197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9494427061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9494510285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9494389277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9494699617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9494429134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9494669590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9495950245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9495064046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9495059841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9496174714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9494689266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9494622021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9494580859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9494768379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9495654235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9494663124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9494495094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9494620007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9494491825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468798761/jobs/5795027307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494419934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468780416/jobs/5794987227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494406099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3468781069/jobs/5794988794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3468784464/jobs/5794996360', 'https://github.com/ursacomputing/crossbow/actions/runs/3468784464/jobs/5794996257', 'https://github.com/ursacomputing/crossbow/actions/runs/3468784464/jobs/5794996144', 'https://github.com/ursacomputing/crossbow/actions/runs/3468784464/jobs/5794996040']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3468796349/jobs/5795021934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3468781960/jobs/5798542040', 'https://github.com/ursacomputing/crossbow/actions/runs/3468781960/jobs/5794991212', 'https://github.com/ursacomputing/crossbow/actions/runs/3468781960/jobs/5794991105', 'https://github.com/ursacomputing/crossbow/actions/runs/3468781960/jobs/5794990969', 'https://github.com/ursacomputing/crossbow/actions/runs/3468781960/jobs/5794990836']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-java-jars,github,{},java-jars/github.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468760763/jobs/5794943954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468769098/jobs/5794961851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-python-sdist,github,{},python-sdist/github.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5796161775', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795484840', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795484711', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795484549', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795484376', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795484238', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795484025', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795266376', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795179594', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795179451', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795179340', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795179210', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795179060', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795178913', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795178739', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5795178564', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5794989881', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5794989754', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5794989632', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5794989500', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5794989361', 'https://github.com/ursacomputing/crossbow/actions/runs/3468776645/jobs/5794978957']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468760045/jobs/5794942281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494429195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468791357/jobs/5795010544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494423393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468798278/jobs/5795026288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494356763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468766761/jobs/5794956595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468774250/jobs/5794973566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3468779907/jobs/5794986129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468771025/jobs/5794966117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468772049/jobs/5794968364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468767496/jobs/5794958039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468789429/jobs/5795006705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468770401/jobs/5794964898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468771517/jobs/5794967252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468783931/jobs/5794994949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494428506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468777112/jobs/5794979975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494387048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468785702/jobs/5794998938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494353633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468777522/jobs/5794980999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494374429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468784869/jobs/5794997066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9494364976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468766275/jobs/5794955654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468782473/jobs/5794991947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468796788/jobs/5795023144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468793646/jobs/5795015522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3468761841/jobs/5794946434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-15-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,e3ea0cb2e3fffff8b644c39c1fa8c11b194cde7c
diff --git a/csv_reports/nightly-packaging-2022-11-16-0.csv b/csv_reports/nightly-packaging-2022-11-16-0.csv
deleted file mode 100644
index 40cebd732f2..00000000000
--- a/csv_reports/nightly-packaging-2022-11-16-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477707633/jobs/5814189021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519843059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477696002/jobs/5814163650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519798434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477723651/jobs/5814224471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519840416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477702764/jobs/5814178105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477728025/jobs/5814235264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519770587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477700751/jobs/5814174147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519768558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477705181/jobs/5814183777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477713001/jobs/5814201195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9520375676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9519824509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9520070710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9520781982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9521234776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9520037893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9519788466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9520302875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9520354965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9519833894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9520258753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9519792672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9520151299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9519837324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9520088935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9520305937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9520348535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9520114513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9521747427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9520255021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9520199996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9521366539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9519950492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9520537564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9520155110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9520505896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9521556395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9519994628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9520021363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9520319977'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9519908746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477720406/jobs/5814217358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519834479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477721554/jobs/5814219682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519799773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3477690450/jobs/5814151318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3477694080/jobs/5814159870', 'https://github.com/ursacomputing/crossbow/actions/runs/3477694080/jobs/5814159757', 'https://github.com/ursacomputing/crossbow/actions/runs/3477694080/jobs/5814159639', 'https://github.com/ursacomputing/crossbow/actions/runs/3477694080/jobs/5814159499']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3477708271/jobs/5814190804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3477711194/jobs/5814893648', 'https://github.com/ursacomputing/crossbow/actions/runs/3477711194/jobs/5814197243', 'https://github.com/ursacomputing/crossbow/actions/runs/3477711194/jobs/5814197112', 'https://github.com/ursacomputing/crossbow/actions/runs/3477711194/jobs/5814196961', 'https://github.com/ursacomputing/crossbow/actions/runs/3477711194/jobs/5814196834']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-java-jars,github,{},java-jars/github.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477692862/jobs/5814157169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477714851/jobs/5814205173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-python-sdist,github,{},python-sdist/github.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5815314228', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814899781', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814899614', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814899478', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814899330', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814899199', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814899026', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814531417', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814414526', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814414411', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814414321', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814414206', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814414087', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814413942', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814413826', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814413669', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814224389', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814224254', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814224139', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814224005', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814223882', 'https://github.com/ursacomputing/crossbow/actions/runs/3477719241/jobs/5814214674']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477721005/jobs/5814218494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519759502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477717638/jobs/5814210937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519794481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477706294/jobs/5814186138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519743786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477691736/jobs/5814154469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477697200/jobs/5814166455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477695080/jobs/5814161588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477694604/jobs/5814160529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477705672/jobs/5814184751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477716582/jobs/5814208889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477699999/jobs/5814172162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477722482/jobs/5814221715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477697883/jobs/5814167749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477724359/jobs/5814226386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519775974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477727236/jobs/5814233182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519834711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477709806/jobs/5814193844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519846920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477699159/jobs/5814170371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519773363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477712510/jobs/5814200150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9519817300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477724019/jobs/5814225466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477701952/jobs/5814176257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477692030/jobs/5814155275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477714430/jobs/5814204316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3477698340/jobs/5814168618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b4a8320890c6658f948e025f522db5f125a1f8dc
diff --git a/csv_reports/nightly-packaging-2022-11-17-0.csv b/csv_reports/nightly-packaging-2022-11-17-0.csv
deleted file mode 100644
index 87012653ad8..00000000000
--- a/csv_reports/nightly-packaging-2022-11-17-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486643321/jobs/5833353593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545293704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3486639389/jobs/5833345370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9545299647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486651476/jobs/5833370918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545255845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486662974/jobs/5833395295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486644936/jobs/5833357090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545337983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486660547/jobs/5833390393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545295859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486634841/jobs/5833336456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486659888/jobs/5833388745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9545433682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9545523174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9545321289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9546711460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9546738114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9545584334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9545602384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9545536629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9545290101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9545298797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9545321751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9545471667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9545404775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9545492319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9545362676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9545578048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9545562757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9545537222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9546648413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9545539556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9545561850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9546983716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9545495222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9545731319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9545499159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9545759347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9546802126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9545468973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9545443489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9545389499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9545635723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486663646/jobs/5833396869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545314380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486650112/jobs/5833368271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545257083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3486634504/jobs/5833335692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3486633400/jobs/5833333992', 'https://github.com/ursacomputing/crossbow/actions/runs/3486633400/jobs/5833333903', 'https://github.com/ursacomputing/crossbow/actions/runs/3486633400/jobs/5833333827', 'https://github.com/ursacomputing/crossbow/actions/runs/3486633400/jobs/5833333735']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3486657516/jobs/5833383767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3486640274/jobs/5834076862', 'https://github.com/ursacomputing/crossbow/actions/runs/3486640274/jobs/5833347674', 'https://github.com/ursacomputing/crossbow/actions/runs/3486640274/jobs/5833347531', 'https://github.com/ursacomputing/crossbow/actions/runs/3486640274/jobs/5833347431', 'https://github.com/ursacomputing/crossbow/actions/runs/3486640274/jobs/5833347332']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-java-jars,github,{},java-jars/github.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486667532/jobs/5833405361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486665422/jobs/5833400723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-python-sdist,github,{},python-sdist/github.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5834424168', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5834028960', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5834028848', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5834028748', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5834028641', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5834028528', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5834028348', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833617037', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833526487', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833526341', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833526150', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833525992', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833525838', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833525640', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833525501', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833525346', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833388225', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833388082', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833387973', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833387857', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833387711', 'https://github.com/ursacomputing/crossbow/actions/runs/3486654416/jobs/5833377087']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486640935/jobs/5833348928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545278018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486657034/jobs/5833382881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545241926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486648741/jobs/5833365360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545304635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486659083/jobs/5833386971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486639914/jobs/5833346466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486655321/jobs/5833379095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486669345/jobs/5833409269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486664973/jobs/5833399739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486648352/jobs/5833364502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486641434/jobs/5833349834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486640606/jobs/5833348167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486654914/jobs/5833378252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486647230/jobs/5833361914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545266845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486662447/jobs/5833394241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545267867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486663404/jobs/5833396342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545318599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486635827/jobs/5833338323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545332169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486632968/jobs/5833332834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9545294822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486643763/jobs/5833354548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486638952/jobs/5833344439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486636229/jobs/5833339066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486664535/jobs/5833398803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3486658025/jobs/5833384830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-17-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,0f87e6bf89211a989e4b77990b35d157655ea1a8
diff --git a/csv_reports/nightly-packaging-2022-11-18-0.csv b/csv_reports/nightly-packaging-2022-11-18-0.csv
deleted file mode 100644
index c95bc1ef9c4..00000000000
--- a/csv_reports/nightly-packaging-2022-11-18-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495415201/jobs/5852155866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570098031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3495394514/jobs/5852111171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570108227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495410830/jobs/5852146504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570151667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495383078/jobs/5852086769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495411331/jobs/5852147449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570130945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495395298/jobs/5852112895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570116355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495384980/jobs/5852090523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495387643/jobs/5852096146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9570131627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9570121164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9570166238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py310-cuda,success,['https://github.com/ursacomputing/crossbow/runs/9571089387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py310-ppc64le,success,['https://github.com/ursacomputing/crossbow/runs/9571208117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9570372932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9570347488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9570116463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9570385137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9570333659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9570406380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9570126190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9570128103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9570169113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9570340963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9570416822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9570153583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9570115527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-osx-arm64-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9571710918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9570765281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9570417217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-osx-clang-py310,success,['https://github.com/ursacomputing/crossbow/runs/9571335060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9570275142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9570289397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9570386412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9570611885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9571546546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9570294931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9570573134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9570410137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9570304670'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495400860/jobs/5852124701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570111518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495408144/jobs/5852140787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570103257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3495387211/jobs/5852095263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3495413710/jobs/5852152872', 'https://github.com/ursacomputing/crossbow/actions/runs/3495413710/jobs/5852152752', 'https://github.com/ursacomputing/crossbow/actions/runs/3495413710/jobs/5852152641', 'https://github.com/ursacomputing/crossbow/actions/runs/3495413710/jobs/5852152543']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3495410245/jobs/5852145136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3495414444/jobs/5852717252', 'https://github.com/ursacomputing/crossbow/actions/runs/3495414444/jobs/5852154580', 'https://github.com/ursacomputing/crossbow/actions/runs/3495414444/jobs/5852154469', 'https://github.com/ursacomputing/crossbow/actions/runs/3495414444/jobs/5852154364', 'https://github.com/ursacomputing/crossbow/actions/runs/3495414444/jobs/5852154234']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-java-jars,github,{},java-jars/github.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495386436/jobs/5852093608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495407657/jobs/5852139734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-python-sdist,github,{},python-sdist/github.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5853139417', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852764073', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852763964', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852763821', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852763658', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852763536', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852763371', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852382493', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852287860', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852287745', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852287629', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852287480', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852287344', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852287200', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852287058', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852286876', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852128149', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852127987', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852127825', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852127687', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852127534', 'https://github.com/ursacomputing/crossbow/actions/runs/3495397672/jobs/5852118091']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495386826/jobs/5852094434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570088046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495389245/jobs/5852099529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570089060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495401959/jobs/5852127016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570128899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495399661/jobs/5852122222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495409611/jobs/5852143814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495403004/jobs/5852129147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495414084/jobs/5852153440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495401159/jobs/5852125352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495382388/jobs/5852085284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495412293/jobs/5852149619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495396202/jobs/5852114637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495397255/jobs/5852117126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495408583/jobs/5852141656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570072598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495381745/jobs/5852083606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570086138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495391908/jobs/5852105402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570106864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495398304/jobs/5852119684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570096044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495405551/jobs/5852135327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9570067817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495395722/jobs/5852113715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495415500/jobs/5852156644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495388522/jobs/5852097908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495401507/jobs/5852126135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,501b7997d4c4eda59f395bdc4547b5db94901903
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3495412500/jobs/5852150090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-18-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,501b7997d4c4eda59f395bdc4547b5db94901903
diff --git a/csv_reports/nightly-packaging-2022-11-19-0.csv b/csv_reports/nightly-packaging-2022-11-19-0.csv
deleted file mode 100644
index 00a65f8a184..00000000000
--- a/csv_reports/nightly-packaging-2022-11-19-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502797731/jobs/5867428874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590152796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3502784911/jobs/5867407921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590167140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502787881/jobs/5867412898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590141046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502789813/jobs/5867415960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502794767/jobs/5867424085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590145811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502782449/jobs/5867404243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590166189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502793612/jobs/5867421993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502786451/jobs/5867410611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9590245990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9590190216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9590201826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9590436372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9590583391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9590221015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9590155684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9590183063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9590263017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9590227753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9590170549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9590159662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9590165175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9590215712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9590158174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9590175800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9590152485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9590200225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9590561395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9590211012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9590269706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9590495239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9590265506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9590253158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9590216806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9590291651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9590598704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9590254617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9590201243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9590203905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9590187740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502790026/jobs/5867416355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590168660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502787241/jobs/5867411799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590144798'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3502793456/jobs/5867421677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3502788908/jobs/5867414624', 'https://github.com/ursacomputing/crossbow/actions/runs/3502788908/jobs/5867414570', 'https://github.com/ursacomputing/crossbow/actions/runs/3502788908/jobs/5867414512', 'https://github.com/ursacomputing/crossbow/actions/runs/3502788908/jobs/5867414464']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3502786155/jobs/5867410186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3502790257/jobs/5867599293', 'https://github.com/ursacomputing/crossbow/actions/runs/3502790257/jobs/5867416825', 'https://github.com/ursacomputing/crossbow/actions/runs/3502790257/jobs/5867416776', 'https://github.com/ursacomputing/crossbow/actions/runs/3502790257/jobs/5867416711', 'https://github.com/ursacomputing/crossbow/actions/runs/3502790257/jobs/5867416659']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-java-jars,github,{},java-jars/github.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502796201/jobs/5867426413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502791764/jobs/5867418879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-python-sdist,github,{},python-sdist/github.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867776974', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867641546', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867641506', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867641481', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867641447', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867641416', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867641372', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867510271', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867476650', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867476603', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867476571', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867476513', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867476473', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867476446', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867476415', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867476358', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867424231', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867424188', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867424142', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867424090', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867424041', 'https://github.com/ursacomputing/crossbow/actions/runs/3502792948/jobs/5867420710']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502797087/jobs/5867427803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590142611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502787008/jobs/5867411425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590154684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502789327/jobs/5867415150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590151243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502796607/jobs/5867427054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502794075/jobs/5867422748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502786783/jobs/5867411065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502794287/jobs/5867423142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502791177/jobs/5867417946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502785168/jobs/5867408397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502784576/jobs/5867407453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502781861/jobs/5867403321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502781604/jobs/5867402824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502796002/jobs/5867426091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590138189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502787558/jobs/5867412307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590156158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502782244/jobs/5867403968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590159337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502783061/jobs/5867405144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590156727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502794463/jobs/5867423449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9590155905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502796928/jobs/5867427548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502783437/jobs/5867405735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502797854/jobs/5867429074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502792754/jobs/5867420314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3502795472/jobs/5867425326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
diff --git a/csv_reports/nightly-packaging-2022-11-20-0.csv b/csv_reports/nightly-packaging-2022-11-20-0.csv
deleted file mode 100644
index 82d01b00717..00000000000
--- a/csv_reports/nightly-packaging-2022-11-20-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507195539/jobs/5874734662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598775289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3507194021/jobs/5874732584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598777522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507208365/jobs/5874756413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598777115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507208860/jobs/5874757288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507198010/jobs/5874738899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598758532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507196953/jobs/5874736919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598774868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507209420/jobs/5874758268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507205084/jobs/5874750978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9598774036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9598770289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9598857085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9599132698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9599269076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9598853049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9598889006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9598771764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9598867961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9598867552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9598772621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9598783265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9598788354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9598788030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9598879828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9598800441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9598874457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9598802556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9599163028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9598876320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9598832188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9599163336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9598927134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9598812585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9598835129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9598840111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9599123009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9598873189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9598885434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9598861912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9598923476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507201317/jobs/5874744230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598772329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507208562/jobs/5874756732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598769090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3507198780/jobs/5874740082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3507196705/jobs/5874736591', 'https://github.com/ursacomputing/crossbow/actions/runs/3507196705/jobs/5874736547', 'https://github.com/ursacomputing/crossbow/actions/runs/3507196705/jobs/5874736496', 'https://github.com/ursacomputing/crossbow/actions/runs/3507196705/jobs/5874736446']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3507207485/jobs/5874754988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3507199904/jobs/5874960344', 'https://github.com/ursacomputing/crossbow/actions/runs/3507199904/jobs/5874742108', 'https://github.com/ursacomputing/crossbow/actions/runs/3507199904/jobs/5874742082', 'https://github.com/ursacomputing/crossbow/actions/runs/3507199904/jobs/5874742040', 'https://github.com/ursacomputing/crossbow/actions/runs/3507199904/jobs/5874741988']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-java-jars,github,{},java-jars/github.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507205833/jobs/5874752346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507196449/jobs/5874736006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-python-sdist,github,{},python-sdist/github.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5875131874', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874947860', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874947827', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874947795', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874947749', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874947703', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874947655', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874830205', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874792613', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874792568', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874792524', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874792481', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874792432', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874792384', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874792355', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874792288', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874741873', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874741827', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874741780', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874741730', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874741691', 'https://github.com/ursacomputing/crossbow/actions/runs/3507197774/jobs/5874738537']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507207019/jobs/5874754291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598774004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507205297/jobs/5874751327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598779420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507207690/jobs/5874755293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598766716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507205991/jobs/5874752665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507208685/jobs/5874756971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507209243/jobs/5874757933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507200802/jobs/5874743411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507201914/jobs/5874745198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507193579/jobs/5874731424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507197417/jobs/5874737880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507201152/jobs/5874743948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507206680/jobs/5874753814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507200402/jobs/5874742755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598780574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507195285/jobs/5874734160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598760284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507208105/jobs/5874755989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598777914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507199622/jobs/5874741566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598767083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507204384/jobs/5874749580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9598782538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507199105/jobs/5874740696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507198506/jobs/5874739667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507202822/jobs/5874746663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507197253/jobs/5874737565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3507195396/jobs/5874734405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
diff --git a/csv_reports/nightly-packaging-2022-11-21-0.csv b/csv_reports/nightly-packaging-2022-11-21-0.csv
deleted file mode 100644
index 4ac62029963..00000000000
--- a/csv_reports/nightly-packaging-2022-11-21-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512758495/jobs/5884807055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610928021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3512761324/jobs/5884813123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610910399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512764634/jobs/5884819415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610865640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512773796/jobs/5884838542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512762950/jobs/5884815981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610880904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512769515/jobs/5884829654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9610922296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512768029/jobs/5884826333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512749333/jobs/5884787928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9610963990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9611251850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9610931848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9611935768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9612089475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9610917687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9611156170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9610973875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9610951100'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9610972006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9611010937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9610924339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9610936419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9611296733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9611200358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9611238729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9610909655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9610938364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9612325429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9611363876'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9611139131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9612439046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9611186681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9611443381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9611115129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9611212791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9612206975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9611296005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9611368898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9611056897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9611103168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512765297/jobs/5884821011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610931682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512744801/jobs/5884777664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610935461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3512765000/jobs/5884820267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3512771017/jobs/5884832920', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771017/jobs/5884832826', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771017/jobs/5884832707', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771017/jobs/5884832600']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3512764342/jobs/5884818808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3512754860/jobs/5885340186', 'https://github.com/ursacomputing/crossbow/actions/runs/3512754860/jobs/5884799944', 'https://github.com/ursacomputing/crossbow/actions/runs/3512754860/jobs/5884799781', 'https://github.com/ursacomputing/crossbow/actions/runs/3512754860/jobs/5884799611', 'https://github.com/ursacomputing/crossbow/actions/runs/3512754860/jobs/5884799456']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-java-jars,github,{},java-jars/github.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512750441/jobs/5884789858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512748950/jobs/5884787078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-python-sdist,github,{},python-sdist/github.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5885918935', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5885298400', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5885298267', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5885298095', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5885297941', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5885297828', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5885297680', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5885070591', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884984676', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884984572', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884984469', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884984388', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884984292', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884984202', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884984083', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884983943', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884843361', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884843169', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884843052', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884842954', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884842798', 'https://github.com/ursacomputing/crossbow/actions/runs/3512771508/jobs/5884833506']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512762374/jobs/5884815007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610938209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512743754/jobs/5884775014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610906467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512772622/jobs/5884835951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610951773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512773339/jobs/5884837681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512778825/jobs/5884849226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512777320/jobs/5884846443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512770596/jobs/5884831692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512747661/jobs/5884783786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512745496/jobs/5884779345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512775894/jobs/5884842693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512749866/jobs/5884788870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512752076/jobs/5884793527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512753667/jobs/5884797121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610889667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512772255/jobs/5884835226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610929333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512757380/jobs/5884805040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610930548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512750916/jobs/5884790935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610903057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512756215/jobs/5884802364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9610960484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512746580/jobs/5884781376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512748652/jobs/5884786310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512761784/jobs/5884814066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512776606/jobs/5884844679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3512744084/jobs/5884775774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-21-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,e9222ae00b515a0f57d8c7d54bdb19457d68582f
diff --git a/csv_reports/nightly-packaging-2022-11-22-0.csv b/csv_reports/nightly-packaging-2022-11-22-0.csv
deleted file mode 100644
index 4ecd6e7a4e3..00000000000
--- a/csv_reports/nightly-packaging-2022-11-22-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521708244/jobs/5903853072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635827284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521706709/jobs/5903849584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635840957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521689985/jobs/5903813545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635838899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521690650/jobs/5903815086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521702167/jobs/5903839616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635813875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521686263/jobs/5903805831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635872513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521693506/jobs/5903820864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521722649/jobs/5903883292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9636993530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9636680009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9636496374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9637967095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9638159195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9637042255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9636481191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9636839005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9636669189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9636617459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9636542611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9636601196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9637206730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9637151240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9637095736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9637150393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9636915526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9637146224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9637419869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9636932708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9636861842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9637880732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9637090281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9636936807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9637237459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9636837219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9638154762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9636424060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9637107711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9636797481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9636635189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521705229/jobs/5903846402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635888299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521714214/jobs/5903864833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635885708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3521719242/jobs/5903876014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3521691474/jobs/5903817129', 'https://github.com/ursacomputing/crossbow/actions/runs/3521691474/jobs/5903817001', 'https://github.com/ursacomputing/crossbow/actions/runs/3521691474/jobs/5903816828', 'https://github.com/ursacomputing/crossbow/actions/runs/3521691474/jobs/5903816654']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3521699330/jobs/5903834225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3521705897/jobs/5904573541', 'https://github.com/ursacomputing/crossbow/actions/runs/3521705897/jobs/5903848120', 'https://github.com/ursacomputing/crossbow/actions/runs/3521705897/jobs/5903847984', 'https://github.com/ursacomputing/crossbow/actions/runs/3521705897/jobs/5903847831', 'https://github.com/ursacomputing/crossbow/actions/runs/3521705897/jobs/5903847688']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-java-jars,github,{},java-jars/github.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521720237/jobs/5903878347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521714580/jobs/5903865667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-python-sdist,github,{},python-sdist/github.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5905308070', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904869224', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904869092', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904868955', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904868793', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904868631', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904868402', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904266445', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904139873', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904139741', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904139580', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904139436', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904139275', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904139154', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904139025', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5904138864', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5903858403', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5903858293', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5903858158', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5903858042', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5903857887', 'https://github.com/ursacomputing/crossbow/actions/runs/3521706412/jobs/5903848704']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521701139/jobs/5903837610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635869682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521711439/jobs/5903859489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635880735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521690265/jobs/5903814188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635903434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521687403/jobs/5903808025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521699977/jobs/5903835208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521712209/jobs/5903861086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521712675/jobs/5903861964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521717506/jobs/5903872077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521690774/jobs/5903815536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521694341/jobs/5903823129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521687854/jobs/5903809022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521695927/jobs/5903826467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521689525/jobs/5903812338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635834731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521723229/jobs/5903884661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635829953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521702812/jobs/5903841284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635871311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521719884/jobs/5903877604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635895414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521694053/jobs/5903822434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9635855228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521695290/jobs/5903825258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521707094/jobs/5903850440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521702519/jobs/5903840387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521707843/jobs/5903852181'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3521714957/jobs/5903866506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-22-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,3cc982e519dc573ebe1bebd72d37c60afb787ed0
diff --git a/csv_reports/nightly-packaging-2022-11-23-0.csv b/csv_reports/nightly-packaging-2022-11-23-0.csv
deleted file mode 100644
index 77aea34d076..00000000000
--- a/csv_reports/nightly-packaging-2022-11-23-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530456448/jobs/5922468819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660303506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530441238/jobs/5922436356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660310035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530456881/jobs/5922469651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660350279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530432836/jobs/5922419723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530452121/jobs/5922459326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660343877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530454924/jobs/5922465334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660323660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530430382/jobs/5922414742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530435244/jobs/5922424259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9660405877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9660329675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9660621902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9661201016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9661530378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9660327484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9660662505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9660299722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9660306569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9660613398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9660541799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9660346279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9660457836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9660571356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9660715186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9660626225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9660583802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9660660176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9661854756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9660533227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9660546109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9661463328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9660491413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9660554771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9660589388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9660816021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9661524739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9660793273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9660418939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9660382046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9660730522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530444240/jobs/5922442423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660291344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530456033/jobs/5922467888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660309169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3530436568/jobs/5922426741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3530438343/jobs/5922430801', 'https://github.com/ursacomputing/crossbow/actions/runs/3530438343/jobs/5922430686', 'https://github.com/ursacomputing/crossbow/actions/runs/3530438343/jobs/5922430560', 'https://github.com/ursacomputing/crossbow/actions/runs/3530438343/jobs/5922430412']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3530451341/jobs/5922457837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3530444602/jobs/5923306526', 'https://github.com/ursacomputing/crossbow/actions/runs/3530444602/jobs/5922443570', 'https://github.com/ursacomputing/crossbow/actions/runs/3530444602/jobs/5922443423', 'https://github.com/ursacomputing/crossbow/actions/runs/3530444602/jobs/5922443283', 'https://github.com/ursacomputing/crossbow/actions/runs/3530444602/jobs/5922443165']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-java-jars,github,{},java-jars/github.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530459815/jobs/5922475525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530463595/jobs/5922483447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-python-sdist,github,{},python-sdist/github.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5923730393', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5923318800', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5923318718', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5923318611', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5923318495', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5923318406', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5923318273', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922802964', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922708737', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922708602', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922708498', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922708390', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922708310', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922708205', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922708086', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922707971', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922451309', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922451200', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922451065', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922450945', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922450817', 'https://github.com/ursacomputing/crossbow/actions/runs/3530442936/jobs/5922439741']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530449305/jobs/5922453186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660338175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530447073/jobs/5922448667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660268836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530441610/jobs/5922437168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660290262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530433271/jobs/5922420524'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530452549/jobs/5922460229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530430894/jobs/5922415745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530448318/jobs/5922451077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530442093/jobs/5922438076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-macos-mojave-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3530435640/jobs/5922425117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530460264/jobs/5922476271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3530442521/jobs/5922439054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530454172/jobs/5922463732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530461623/jobs/5922479311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660283400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530462562/jobs/5922481054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660302714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530451743/jobs/5922458474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660314619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530439210/jobs/5922432202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660345020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530431278/jobs/5922416605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9660305786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530450425/jobs/5922455901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530436996/jobs/5922427742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530438775/jobs/5922431382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530454568/jobs/5922464640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3530450024/jobs/5922454969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-23-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,767f203dd1fb3d5d8684cae8ecf1a24d75f41a06
diff --git a/csv_reports/nightly-packaging-2022-11-24-0.csv b/csv_reports/nightly-packaging-2022-11-24-0.csv
deleted file mode 100644
index a142656446d..00000000000
--- a/csv_reports/nightly-packaging-2022-11-24-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538973514/jobs/5940359701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683540108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538965928/jobs/5940343668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683518262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538975964/jobs/5940365111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683561976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538962319/jobs/5940335657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538972468/jobs/5940357383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683504092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538975274/jobs/5940363454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683505436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538956922/jobs/5940325137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538974065/jobs/5940360761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9683773652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9683530944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9683524096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9684637651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9684911037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9683534209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9683532291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9683536980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9683569809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9683612879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9683531743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9683881537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9683529050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9683551004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9683606700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9683569386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9683648959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9683573078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9685102760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9683840440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9683839467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9684825623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9683891921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9683709584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9683966046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9683864366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9684985280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9683706436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9683724553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9683640894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9683784697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538986507/jobs/5940388319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683566265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538971969/jobs/5940356540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683534469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538967164/jobs/5940346331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3538973146/jobs/5940359435', 'https://github.com/ursacomputing/crossbow/actions/runs/3538973146/jobs/5940359334', 'https://github.com/ursacomputing/crossbow/actions/runs/3538973146/jobs/5940359213', 'https://github.com/ursacomputing/crossbow/actions/runs/3538973146/jobs/5940359064']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3538969745/jobs/5940352068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3538968181/jobs/5941073321', 'https://github.com/ursacomputing/crossbow/actions/runs/3538968181/jobs/5940349099', 'https://github.com/ursacomputing/crossbow/actions/runs/3538968181/jobs/5940348952', 'https://github.com/ursacomputing/crossbow/actions/runs/3538968181/jobs/5940348832', 'https://github.com/ursacomputing/crossbow/actions/runs/3538968181/jobs/5940348707']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-java-jars,github,{},java-jars/github.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538957747/jobs/5940326713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538978126/jobs/5940369776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-python-sdist,github,{},python-sdist/github.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5941650267', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5941250178', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5941250034', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5941249933', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5941249838', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5941249680', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5941249523', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940637839', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940548824', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940548693', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940548564', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940548431', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940548321', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940548214', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940548098', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940547943', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940363376', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940363245', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940363118', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940363010', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940362873', 'https://github.com/ursacomputing/crossbow/actions/runs/3538970435/jobs/5940353349']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538956163/jobs/5940323612'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683503493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538971281/jobs/5940355101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683515981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538971592/jobs/5940355830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683556226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538984993/jobs/5940385056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538985389/jobs/5940385802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538983175/jobs/5940381068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538958207/jobs/5940327506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538961467/jobs/5940334075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538976716/jobs/5940366961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538966756/jobs/5940345526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3538976365/jobs/5940366019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538961865/jobs/5940334744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538983894/jobs/5940382614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683484567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538988729/jobs/5940393127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683565548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538974883/jobs/5940362523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683548322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3538977117/jobs/5940367714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9683495565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538979702/jobs/5940373622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9683490409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538962727/jobs/5940336559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538981275/jobs/5940376993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538978522/jobs/5940370757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538967513/jobs/5940347106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,94e45faf6afe7280464503da0d5f8be31afb5097
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3538965428/jobs/5940342694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,94e45faf6afe7280464503da0d5f8be31afb5097
diff --git a/csv_reports/nightly-packaging-2022-11-25-0.csv b/csv_reports/nightly-packaging-2022-11-25-0.csv
deleted file mode 100644
index dcae8df83ba..00000000000
--- a/csv_reports/nightly-packaging-2022-11-25-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546492051/jobs/5955589543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703130440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546473519/jobs/5955551651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703082266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546498111/jobs/5955602226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703080042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546468246/jobs/5955541050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546491041/jobs/5955587253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703120504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546480423/jobs/5955566395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703091342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546471179/jobs/5955546588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546489980/jobs/5955585072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9703248187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9703196326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9703153669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9704179120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9704121151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9703381132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9703160570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9703133945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9703225501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9703128308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9703286490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9703117851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9703160956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9703118450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9703193995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9703117940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9703329045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9703127578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9704182203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9703439142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9703601097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9704348796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9703295807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9703420272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9703512873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9703347870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9704334568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9703232806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9703199810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9703357737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9703258741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546473114/jobs/5955550883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703140473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546477255/jobs/5955559751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703143141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546493125/jobs/5955591789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3546496729/jobs/5955599634', 'https://github.com/ursacomputing/crossbow/actions/runs/3546496729/jobs/5955599556', 'https://github.com/ursacomputing/crossbow/actions/runs/3546496729/jobs/5955599420', 'https://github.com/ursacomputing/crossbow/actions/runs/3546496729/jobs/5955599311']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3546478365/jobs/5955562005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3546495680/jobs/5956068274', 'https://github.com/ursacomputing/crossbow/actions/runs/3546495680/jobs/5955597328', 'https://github.com/ursacomputing/crossbow/actions/runs/3546495680/jobs/5955597234', 'https://github.com/ursacomputing/crossbow/actions/runs/3546495680/jobs/5955597125', 'https://github.com/ursacomputing/crossbow/actions/runs/3546495680/jobs/5955597002']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-java-jars,github,{},java-jars/github.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546494064/jobs/5955593608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3546487362/jobs/5955579668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-python-sdist,github,{},python-sdist/github.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5956526290', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5956016245', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5956016171', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5956016073', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5956015995', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5956015899', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5956015751', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955810245', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955737883', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955737807', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955737724', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955737626', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955737530', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955737409', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955737302', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955737177', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955613308', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955613236', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955613165', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955613057', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955612930', 'https://github.com/ursacomputing/crossbow/actions/runs/3546499956/jobs/5955606231']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546496424/jobs/5955598687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703110208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546497428/jobs/5955600902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703142210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546473954/jobs/5955552536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703092257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546488501/jobs/5955582035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546488070/jobs/5955581278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546492438/jobs/5955590293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546490718/jobs/5955586588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3546477678/jobs/5955560485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546480807/jobs/5955567111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546490318/jobs/5955585780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546476861/jobs/5955558941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546470362/jobs/5955545099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546482634/jobs/5955570302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703138557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546487725/jobs/5955580431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703094605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546480064/jobs/5955565615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9703096303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546489302/jobs/5955583647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9703104780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546498791/jobs/5955603689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9703093451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546476470/jobs/5955558116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546494826/jobs/5955595252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546497026/jobs/5955600044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546491356/jobs/5955587987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3546498498/jobs/5955603031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,63f013cdb36d05f6f96a145aff3c6232470f2d02
diff --git a/csv_reports/nightly-packaging-2022-11-26-0.csv b/csv_reports/nightly-packaging-2022-11-26-0.csv
deleted file mode 100644
index aa22e860c19..00000000000
--- a/csv_reports/nightly-packaging-2022-11-26-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552973723/jobs/5968218790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719084360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552964108/jobs/5968202482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719096785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552973583/jobs/5968218526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719109012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552961106/jobs/5968197318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552975592/jobs/5968221755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719109265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552974362/jobs/5968219822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719084699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552969881/jobs/5968212529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552972618/jobs/5968217115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9719188299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9719130817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9719095781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9719473337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9719585473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9719173826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9719209248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9719199586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9719103661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9719157666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9719102001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9719201957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9719099805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9719142167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9719102173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9719096754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9719114991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9719188520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9719436112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9719169702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9719175419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9719430918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9719156210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9719146993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9719175564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9719216124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9719445889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9719209584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9719228527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9719130327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9719175227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552974679/jobs/5968220373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719105957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552970348/jobs/5968213405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719081263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552963119/jobs/5968200842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3552963916/jobs/5968202285', 'https://github.com/ursacomputing/crossbow/actions/runs/3552963916/jobs/5968202241', 'https://github.com/ursacomputing/crossbow/actions/runs/3552963916/jobs/5968202197', 'https://github.com/ursacomputing/crossbow/actions/runs/3552963916/jobs/5968202158']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3552970172/jobs/5968213093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3552965317/jobs/5968458655', 'https://github.com/ursacomputing/crossbow/actions/runs/3552965317/jobs/5968204778', 'https://github.com/ursacomputing/crossbow/actions/runs/3552965317/jobs/5968204717', 'https://github.com/ursacomputing/crossbow/actions/runs/3552965317/jobs/5968204689', 'https://github.com/ursacomputing/crossbow/actions/runs/3552965317/jobs/5968204642']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-java-jars,github,{},java-jars/github.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552971604/jobs/5968215573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552966078/jobs/5968205880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-python-sdist,github,{},python-sdist/github.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968558979', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968399779', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968399748', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968399712', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968399678', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968399656', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968399617', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968298595', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968266180', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968266132', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968266104', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968266066', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968266024', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968265987', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968265955', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968265902', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968207758', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968207719', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968207666', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968207628', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968207577', 'https://github.com/ursacomputing/crossbow/actions/runs/3552964618/jobs/5968203496']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552971933/jobs/5968216132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719095395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552961303/jobs/5968197690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719091837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552964847/jobs/5968203886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719094211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552966222/jobs/5968206110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552971252/jobs/5968214958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552961888/jobs/5968198759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552975779/jobs/5968222046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552960605/jobs/5968196522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552975990/jobs/5968222450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552973880/jobs/5968219045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552974202/jobs/5968219565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552961669/jobs/5968198405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552966388/jobs/5968206361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719100019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552971430/jobs/5968215289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719093805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552963563/jobs/5968201522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9719093539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552976099/jobs/5968222641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9719080378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552970711/jobs/5968214011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9719101917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552965052/jobs/5968204222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552967566/jobs/5968208123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552961481/jobs/5968198065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552968319/jobs/5968209394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3552972970/jobs/5968217690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-26-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,c0b311ee83c6ef8d9cf43d9e67af1f5d61dbfdd5
diff --git a/csv_reports/nightly-packaging-2022-11-27-0.csv b/csv_reports/nightly-packaging-2022-11-27-0.csv
deleted file mode 100644
index 87070a58101..00000000000
--- a/csv_reports/nightly-packaging-2022-11-27-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557442316/jobs/5975448696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727460391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557437847/jobs/5975441454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727451289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557440530/jobs/5975445759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727473342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557444999/jobs/5975453168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557447505/jobs/5975457577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727449794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557441783/jobs/5975447639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727468253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557447901/jobs/5975458380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557440734/jobs/5975446075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9727555875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9727482802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9727572080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9727775513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9727897280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9727469960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9727547189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9727464702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9727558330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9727477335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9727519994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9727466266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9727494695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9727470489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9727472562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9727539732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9727507210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9727546202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9727815511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9727536128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9727534985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9727848892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9727591142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9727586252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9727528864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9727560987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9728028396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9727532729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9727562758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9727586535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9727515908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557439699/jobs/5975444444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727464614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557446230/jobs/5975454979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727457026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557452505/jobs/5975466520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3557451850/jobs/5975465475', 'https://github.com/ursacomputing/crossbow/actions/runs/3557451850/jobs/5975465438', 'https://github.com/ursacomputing/crossbow/actions/runs/3557451850/jobs/5975465406', 'https://github.com/ursacomputing/crossbow/actions/runs/3557451850/jobs/5975465376']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3557442002/jobs/5975448016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3557453710/jobs/5975653956', 'https://github.com/ursacomputing/crossbow/actions/runs/3557453710/jobs/5975468590', 'https://github.com/ursacomputing/crossbow/actions/runs/3557453710/jobs/5975468548', 'https://github.com/ursacomputing/crossbow/actions/runs/3557453710/jobs/5975468505', 'https://github.com/ursacomputing/crossbow/actions/runs/3557453710/jobs/5975468478']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-java-jars,github,{},java-jars/github.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557451221/jobs/5975464221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557439871/jobs/5975444762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-python-sdist,github,{},python-sdist/github.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975853601', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975629351', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975629298', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975629270', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975629244', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975629215', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975629170', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975545270', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975512915', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975512869', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975512814', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975512781', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975512743', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975512705', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975512675', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975512629', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975460474', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975460440', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975460412', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975460378', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975460333', 'https://github.com/ursacomputing/crossbow/actions/runs/3557447122/jobs/5975456973']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557454150/jobs/5975469352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727463253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557450786/jobs/5975463556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727467553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557443654/jobs/5975450927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727473556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557454309/jobs/5975469565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557453088/jobs/5975467447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557444640/jobs/5975452523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557451434/jobs/5975464662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557438814/jobs/5975443031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557448045/jobs/5975458672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557450372/jobs/5975462897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557444443/jobs/5975452185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557444816/jobs/5975452867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557439013/jobs/5975443332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9727469424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557440976/jobs/5975446475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727472222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557445884/jobs/5975454473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9727469039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557444322/jobs/5975451956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9727468842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557446925/jobs/5975456666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9727449384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557448459/jobs/5975459520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557444138/jobs/5975451701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557447712/jobs/5975457959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557452952/jobs/5975467204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3557453225/jobs/5975467702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-27-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
diff --git a/csv_reports/nightly-packaging-2022-11-28-0.csv b/csv_reports/nightly-packaging-2022-11-28-0.csv
deleted file mode 100644
index 980e5f88fb8..00000000000
--- a/csv_reports/nightly-packaging-2022-11-28-0.csv
+++ /dev/null
@@ -1,86 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563060476/jobs/5985424602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739356855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563076176/jobs/5985457197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739393516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563072707/jobs/5985449741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739365597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563070604/jobs/5985445166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563078987/jobs/5985462869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739430617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563086280/jobs/5985478762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739427252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563051878/jobs/5985406884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563050350/jobs/5985403240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9739767954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9739422078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9739806182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9740626880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9740827352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9739802650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9739681887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9739855256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9739718905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9739448264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9739453752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9739610308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9739411963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9739405037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9739550367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9739568283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9739463682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9739527885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9740745243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9739828002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9739864014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9740934366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9739652508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9739611167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9739939158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9739644038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9740826563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9739758673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9739594494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9739500962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9739487503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563085148/jobs/5985476319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739406122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563054112/jobs/5985411541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739426052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563083134/jobs/5985471822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3563080269/jobs/5985466108', 'https://github.com/ursacomputing/crossbow/actions/runs/3563080269/jobs/5985466000', 'https://github.com/ursacomputing/crossbow/actions/runs/3563080269/jobs/5985465886', 'https://github.com/ursacomputing/crossbow/actions/runs/3563080269/jobs/5985465780']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3563075815/jobs/5985456326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3563054887/jobs/5989863045', 'https://github.com/ursacomputing/crossbow/actions/runs/3563054887/jobs/5985413381', 'https://github.com/ursacomputing/crossbow/actions/runs/3563054887/jobs/5985413287', 'https://github.com/ursacomputing/crossbow/actions/runs/3563054887/jobs/5985413190', 'https://github.com/ursacomputing/crossbow/actions/runs/3563054887/jobs/5985413068']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-java-jars,github,{},java-jars/github.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563084146/jobs/5985474015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563076831/jobs/5985458833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-python-sdist,github,{},python-sdist/github.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-r-binary-packages,pending,"['https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5986054626', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5986054513', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5986054407', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5986054276', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5986054142', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5986053963', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985745387', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985638905', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985638796', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985638686', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985638568', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985638458', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985638348', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985638234', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985638053', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985462919', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985462807', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985462718', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985462610', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985462482', 'https://github.com/ursacomputing/crossbow/actions/runs/3563074064/jobs/5985452756']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563058921/jobs/5985421311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739431521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563065756/jobs/5985435415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739443372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563067641/jobs/5985439148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739400523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563063829/jobs/5985431023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563062807/jobs/5985428975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563077755/jobs/5985460616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563064154/jobs/5985431941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563059994/jobs/5985423825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563052644/jobs/5985408568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563058469/jobs/5985420356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563072239/jobs/5985448786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563068028/jobs/5985440037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563061898/jobs/5985427284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739358028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563071058/jobs/5985446154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739392346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563073531/jobs/5985451552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739419279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563065266/jobs/5985434477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9739354322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3563057549/jobs/5985418644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9739351238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563084804/jobs/5985475531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563055571/jobs/5985414725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563085859/jobs/5985477903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563068722/jobs/5985441575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3563070198/jobs/5985444363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-28-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,409a95ddc2f1b8aac54612da3658b1f36a734469
diff --git a/csv_reports/nightly-packaging-2022-11-29-0.csv b/csv_reports/nightly-packaging-2022-11-29-0.csv
deleted file mode 100644
index cf92913d010..00000000000
--- a/csv_reports/nightly-packaging-2022-11-29-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572344435/jobs/6005133303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765034611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572370111/jobs/6005185343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765077968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572350013/jobs/6005145092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765080144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572373243/jobs/6005192456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572374396/jobs/6005194806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765072574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572350980/jobs/6005146322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765065405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572379789/jobs/6005205871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572368299/jobs/6005181719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9765195372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9765104542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9765074293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9766291142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9766430737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9765335097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9765247384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9765076602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9765097286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9765292371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9765082723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9765369497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9765137479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9765136883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9765300985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9765094626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9765084413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9765411550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9766328950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9765751597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9765649414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9766358789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9765251962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9765541225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9765325602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9765600950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9766497356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9765293924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9765450105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9765190905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9765206889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572372399/jobs/6005190748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765083108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572357530/jobs/6005160008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765111087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572365667/jobs/6005176986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3572361156/jobs/6005168091', 'https://github.com/ursacomputing/crossbow/actions/runs/3572361156/jobs/6005167943', 'https://github.com/ursacomputing/crossbow/actions/runs/3572361156/jobs/6005167808', 'https://github.com/ursacomputing/crossbow/actions/runs/3572361156/jobs/6005167647']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3572356680/jobs/6005158237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3572375858/jobs/6005975920', 'https://github.com/ursacomputing/crossbow/actions/runs/3572375858/jobs/6005198952', 'https://github.com/ursacomputing/crossbow/actions/runs/3572375858/jobs/6005198821', 'https://github.com/ursacomputing/crossbow/actions/runs/3572375858/jobs/6005198684', 'https://github.com/ursacomputing/crossbow/actions/runs/3572375858/jobs/6005198519']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-java-jars,github,{},java-jars/github.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572368774/jobs/6005182508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3572370511/jobs/6005186404'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-python-sdist,github,{},python-sdist/github.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-r-binary-packages,pending,"['https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6006547732', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6006547547', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6006547350', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6006547099', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6006546883', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6006546602', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005626989', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005514179', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005514015', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005513835', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005513698', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005513536', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005513402', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005513267', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005513056', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005188208', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005188104', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005188007', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005187912', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005187726', 'https://github.com/ursacomputing/crossbow/actions/runs/3572366843/jobs/6005179208']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572360748/jobs/6005166941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765097241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572358709/jobs/6005162591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765123614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572378135/jobs/6005203067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765045273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572362475/jobs/6005170460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765095133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572378726/jobs/6005204136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572353865/jobs/6005152197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572352382/jobs/6005149305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572380855/jobs/6005208025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572364536/jobs/6005174827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572355415/jobs/6005155537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572375454/jobs/6005197451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572354961/jobs/6005154584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572369614/jobs/6005184396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572377597/jobs/6005202123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9765121842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572380367/jobs/6005207157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765035902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572349405/jobs/6005143969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765075734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572345367/jobs/6005135108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9765051426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572347158/jobs/6005139993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9765062722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572347196/jobs/6005140001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572362860/jobs/6005171361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572352809/jobs/6005150143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572347186/jobs/6005140141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3572353328/jobs/6005151083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-29-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d77ced27a008ef0cb32093e62f890ba38a16febd
diff --git a/csv_reports/nightly-packaging-2022-11-30-0.csv b/csv_reports/nightly-packaging-2022-11-30-0.csv
deleted file mode 100644
index 4d27b668ee1..00000000000
--- a/csv_reports/nightly-packaging-2022-11-30-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581631840/jobs/6024915629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790841976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581645919/jobs/6024946512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790923206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581637685/jobs/6024927872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790935410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581622799/jobs/6024895946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581621833/jobs/6024893933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790897238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581627381/jobs/6024905864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790867771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581626327/jobs/6024903148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581630789/jobs/6024913279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9790958868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9790907889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9791146141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9791863357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9792114378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9790938681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9791214272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9791137210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9791092840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9790901266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9791109294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9791186595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9791223319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9790943357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9791173777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9791130078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9790883780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9790905598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9792161324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9791500750'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9791152227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9792093492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9791361227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9791174799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9791453123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9791206445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9792455526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9791079915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9791052172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9791064867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,a497f28fbed46e51922aeebafde50321a4602df5
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9791013311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,a497f28fbed46e51922aeebafde50321a4602df5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581618575/jobs/6024887017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790870040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581644776/jobs/6024943849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790838740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581648950/jobs/6024953174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,a497f28fbed46e51922aeebafde50321a4602df5
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3581634676/jobs/6024922050', 'https://github.com/ursacomputing/crossbow/actions/runs/3581634676/jobs/6024921936', 'https://github.com/ursacomputing/crossbow/actions/runs/3581634676/jobs/6024921808', 'https://github.com/ursacomputing/crossbow/actions/runs/3581634676/jobs/6024921705']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,a497f28fbed46e51922aeebafde50321a4602df5
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3581616288/jobs/6024882089'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,a497f28fbed46e51922aeebafde50321a4602df5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3581625013/jobs/6025624003', 'https://github.com/ursacomputing/crossbow/actions/runs/3581625013/jobs/6024900799', 'https://github.com/ursacomputing/crossbow/actions/runs/3581625013/jobs/6024900679', 'https://github.com/ursacomputing/crossbow/actions/runs/3581625013/jobs/6024900532', 'https://github.com/ursacomputing/crossbow/actions/runs/3581625013/jobs/6024900319']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-java-jars,github,{},java-jars/github.yml,a497f28fbed46e51922aeebafde50321a4602df5
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581639060/jobs/6024931341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,a497f28fbed46e51922aeebafde50321a4602df5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581639386/jobs/6024931999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-python-sdist,github,{},python-sdist/github.yml,a497f28fbed46e51922aeebafde50321a4602df5
-r-binary-packages,pending,"['https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025409332', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025409217', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025409115', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025409007', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025408846', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025408622', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025339295', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025232103', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025232014', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025231916', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025231817', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025231733', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025231636', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025231537', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6025231410', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6024966417', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6024966279', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6024966188', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6024966084', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6024965935', 'https://github.com/ursacomputing/crossbow/actions/runs/3581650115/jobs/6024955908']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,a497f28fbed46e51922aeebafde50321a4602df5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581644317/jobs/6024943038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790845020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581620052/jobs/6024889934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790904923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581640403/jobs/6024933971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790934328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581646594/jobs/6024948083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790909463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581629467/jobs/6024910042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581621017/jobs/6024892013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581642783/jobs/6024939700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581619596/jobs/6024889165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581650395/jobs/6024956563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581619112/jobs/6024887981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581616761/jobs/6024882984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581649353/jobs/6024954048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581617417/jobs/6024884433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581635628/jobs/6024923780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790918862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581635910/jobs/6024924250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790872483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581642079/jobs/6024937952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790861210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581648115/jobs/6024951324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790857640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581643886/jobs/6024942031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9790876098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581650723/jobs/6024957290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581641227/jobs/6024935952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581623554/jobs/6024897452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581641631/jobs/6024936876'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,a497f28fbed46e51922aeebafde50321a4602df5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3581630518/jobs/6024912479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-11-30-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,a497f28fbed46e51922aeebafde50321a4602df5
diff --git a/csv_reports/nightly-packaging-2022-12-01-0.csv b/csv_reports/nightly-packaging-2022-12-01-0.csv
deleted file mode 100644
index 97f22b09d5b..00000000000
--- a/csv_reports/nightly-packaging-2022-12-01-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590890149/jobs/6044785291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816661712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590897973/jobs/6044801438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816666358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590881309/jobs/6044766206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816651621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590893060/jobs/6044791669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590867286/jobs/6044736015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816654221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3590866755/jobs/6044735050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9816704855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590886389/jobs/6044777012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590894321/jobs/6044794093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9816704184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9816747825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9817017143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9817775961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9818090728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9816693343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9816837964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9816696320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9816982038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9816929795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9816743533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9816721601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9817013228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9816888817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9816974071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9816682010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9816683081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9816771832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9817894507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9817424408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9816944043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9818510233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9817011780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9816837458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9817037290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9816983512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9818063217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9816801674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9816900194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9816795589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9816993840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590864143/jobs/6044729112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816641676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590897059/jobs/6044799671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816728559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590875941/jobs/6044754576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3590892129/jobs/6044790424', 'https://github.com/ursacomputing/crossbow/actions/runs/3590892129/jobs/6044790303', 'https://github.com/ursacomputing/crossbow/actions/runs/3590892129/jobs/6044790105', 'https://github.com/ursacomputing/crossbow/actions/runs/3590892129/jobs/6044789952']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3590880515/jobs/6044764431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3590895188/jobs/6045543745', 'https://github.com/ursacomputing/crossbow/actions/runs/3590895188/jobs/6044796403', 'https://github.com/ursacomputing/crossbow/actions/runs/3590895188/jobs/6044796282', 'https://github.com/ursacomputing/crossbow/actions/runs/3590895188/jobs/6044796147', 'https://github.com/ursacomputing/crossbow/actions/runs/3590895188/jobs/6044796015']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-java-jars,github,{},java-jars/github.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590873154/jobs/6044748774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590877540/jobs/6044758050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-python-sdist,github,{},python-sdist/github.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6048639079', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6045273732', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6045273613', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6045273471', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6045273319', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6045273202', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6045273016', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6045093793', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044994879', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044994754', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044994662', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044994524', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044994412', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044994304', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044994174', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044993968', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044805381', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044804150', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044804056', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044803969', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044803809', 'https://github.com/ursacomputing/crossbow/actions/runs/3590894872/jobs/6044795242']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590871100/jobs/6044744241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816667582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590884878/jobs/6044773727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816686293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590877146/jobs/6044757315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816673295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590886016/jobs/6044776197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816660553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590884530/jobs/6044773007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590875599/jobs/6044753917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590892604/jobs/6044790853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590894074/jobs/6044793671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590877941/jobs/6044758891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590865971/jobs/6044733339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590890825/jobs/6044787131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590885265/jobs/6044774552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590863134/jobs/6044727012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590870649/jobs/6044743564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816705675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590886699/jobs/6044777706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816672174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590872772/jobs/6044747829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816700990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590895600/jobs/6044796878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9816641671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590882404/jobs/6044768557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9816682057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590875086/jobs/6044753087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590879152/jobs/6044761857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590888119/jobs/6044780541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590893580/jobs/6044792637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3590885862/jobs/6044775825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,6f4a539323da0d6aef528ccce2404e36f0a08585
diff --git a/csv_reports/nightly-packaging-2022-12-02-0.csv b/csv_reports/nightly-packaging-2022-12-02-0.csv
deleted file mode 100644
index 0fedce734ca..00000000000
--- a/csv_reports/nightly-packaging-2022-12-02-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600142882/jobs/6064478396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842178829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600151962/jobs/6064497938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842218686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600155051/jobs/6064504364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842199955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600155590/jobs/6064505558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600129326/jobs/6064449539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842195125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3600136363/jobs/6064463690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9842186680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600156836/jobs/6064507827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600140396/jobs/6064472852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9843917184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9844025421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9844242741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9844957796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9844592847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9843890721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9843602996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9843416068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9843505198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9843578817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9844064197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9843979410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9844026409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9843967675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9843539763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9843478648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9843489066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9843464340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9845072064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9843565844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9844498850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9844895307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9843841764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9844262162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9844402823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9843778531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9844901078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9844083613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9843861978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9844206357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9844124156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600135608/jobs/6064462092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842190538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600143662/jobs/6064479972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842226081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600140034/jobs/6064471969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3600146368/jobs/6064485861', 'https://github.com/ursacomputing/crossbow/actions/runs/3600146368/jobs/6064485729', 'https://github.com/ursacomputing/crossbow/actions/runs/3600146368/jobs/6064485580', 'https://github.com/ursacomputing/crossbow/actions/runs/3600146368/jobs/6064485468']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3600132489/jobs/6064455918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3600161016/jobs/6065086021', 'https://github.com/ursacomputing/crossbow/actions/runs/3600161016/jobs/6064516668', 'https://github.com/ursacomputing/crossbow/actions/runs/3600161016/jobs/6064516556', 'https://github.com/ursacomputing/crossbow/actions/runs/3600161016/jobs/6064516430', 'https://github.com/ursacomputing/crossbow/actions/runs/3600161016/jobs/6064516330']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-java-jars,github,{},java-jars/github.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600148233/jobs/6064489994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600159456/jobs/6064513260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-python-sdist,github,{},python-sdist/github.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6066569216', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6065056743', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6065056649', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6065056511', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6065056414', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6065056288', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6065056156', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064709087', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064629457', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064629350', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064629212', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064629111', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064629031', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064628912', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064628811', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064628688', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064461854', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064461759', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064461661', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064461568', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064461436', 'https://github.com/ursacomputing/crossbow/actions/runs/3600131603/jobs/6064454266']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600155970/jobs/6064506285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842208507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600159803/jobs/6064513952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842258648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600158467/jobs/6064511063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842228734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600142525/jobs/6064477454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842177810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600128438/jobs/6064447883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600152882/jobs/6064499918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600157650/jobs/6064509592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600148606/jobs/6064490773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600128011/jobs/6064447106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600137147/jobs/6064465467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600137640/jobs/6064466517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600138944/jobs/6064469457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600144677/jobs/6064482085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600151466/jobs/6064496771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9842188680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600155360/jobs/6064505014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842252865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600153929/jobs/6064502103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842236882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600151133/jobs/6064496109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842206248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3600158743/jobs/6064511698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9842242894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600147074/jobs/6064487231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600150122/jobs/6064493949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600139276/jobs/6064470276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600138046/jobs/6064467483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3600146704/jobs/6064486308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-02-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,90d1dd187ea1235037d17ac596f71ad6a67fc567
diff --git a/csv_reports/nightly-packaging-2022-12-03-0.csv b/csv_reports/nightly-packaging-2022-12-03-0.csv
deleted file mode 100644
index 7e9d14536ba..00000000000
--- a/csv_reports/nightly-packaging-2022-12-03-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607760700/jobs/6079975497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862362578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607763601/jobs/6079981641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862358581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607765706/jobs/6079985403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862349362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607757908/jobs/6079970787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607772386/jobs/6079997079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862362287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607767327/jobs/6079988466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862344177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607773307/jobs/6079998610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607769065/jobs/6079991506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9862372971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9862448938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9862347536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9862652383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9862726099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9862459617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9862352673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9862365324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9862394102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9862352026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9862470312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9862378892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9862351194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9862431591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9862418186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9862356330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9862460904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9862347962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9862724531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9862463135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9862545311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9862698659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9862395269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9862406351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9862445752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9862465211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9862704825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9862475159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9862434792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9862397969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9862371690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607767744/jobs/6079989079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862352921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607774207/jobs/6080000013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862338666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607765151/jobs/6079984469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3607761916/jobs/6079978432', 'https://github.com/ursacomputing/crossbow/actions/runs/3607761916/jobs/6079978372', 'https://github.com/ursacomputing/crossbow/actions/runs/3607761916/jobs/6079978300', 'https://github.com/ursacomputing/crossbow/actions/runs/3607761916/jobs/6079978212']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3607759575/jobs/6079973607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3607759095/jobs/6080163426', 'https://github.com/ursacomputing/crossbow/actions/runs/3607759095/jobs/6079973000', 'https://github.com/ursacomputing/crossbow/actions/runs/3607759095/jobs/6079972967', 'https://github.com/ursacomputing/crossbow/actions/runs/3607759095/jobs/6079972919', 'https://github.com/ursacomputing/crossbow/actions/runs/3607759095/jobs/6079972884']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-java-jars,github,{},java-jars/github.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607774829/jobs/6080000901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607757411/jobs/6079970027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-python-sdist,github,{},python-sdist/github.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080338129', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080143625', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080143575', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080143504', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080143436', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080143381', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080143294', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080078492', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080050824', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080050786', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080050744', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080050716', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080050676', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080050647', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080050608', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6080050559', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6079991665', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6079991636', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6079991598', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6079991570', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6079991530', 'https://github.com/ursacomputing/crossbow/actions/runs/3607767068/jobs/6079987976']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607760542/jobs/6079975173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862351319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607770038/jobs/6079993007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862334228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607763214/jobs/6079981025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862328323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607759315/jobs/6079973260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862352024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607766602/jobs/6079986903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607770849/jobs/6079994387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607769410/jobs/6079992038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607770662/jobs/6079994084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607769625/jobs/6079992340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607771867/jobs/6079996154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607758662/jobs/6079972137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607771166/jobs/6079994929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607762171/jobs/6079978700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607772075/jobs/6079996518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862340538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607772776/jobs/6079997706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862327475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607773975/jobs/6079999693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862343103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607766368/jobs/6079986475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862350241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607766112/jobs/6079986078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9862334800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607766939/jobs/6079987699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607771705/jobs/6079995824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607768718/jobs/6079990681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607766807/jobs/6079987340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,53abebb06f511a8980d03abbf56b614929dea0a4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3607765891/jobs/6079985736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-03-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,53abebb06f511a8980d03abbf56b614929dea0a4
diff --git a/csv_reports/nightly-packaging-2022-12-04-0.csv b/csv_reports/nightly-packaging-2022-12-04-0.csv
deleted file mode 100644
index d5009e97c54..00000000000
--- a/csv_reports/nightly-packaging-2022-12-04-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612455642/jobs/6087574815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871214656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612456388/jobs/6087576646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871225212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612459484/jobs/6087582860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871203522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612467067/jobs/6087595454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612459925/jobs/6087583360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871216449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612465392/jobs/6087592849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871215395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612457169/jobs/6087578285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612458325/jobs/6087580367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9871315442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9871219934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9871219333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9871583691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9871598835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9871311216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9871213337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9871297130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9871272565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9871247449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9871284817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9871310465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9871260266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9871234095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9871221650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9871296643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9871322909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9871218947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9871671251'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9871332819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9871296792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9871625617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9871334714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9871261358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9871285026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9871295456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9871739300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9871269202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9871283530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9871331482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9871284114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612465599/jobs/6087593205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871198045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612457685/jobs/6087579342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871223639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612455909/jobs/6087575475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3612451849/jobs/6087567926', 'https://github.com/ursacomputing/crossbow/actions/runs/3612451849/jobs/6087567870', 'https://github.com/ursacomputing/crossbow/actions/runs/3612451849/jobs/6087567822', 'https://github.com/ursacomputing/crossbow/actions/runs/3612451849/jobs/6087567763']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3612453942/jobs/6087571530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3612457325/jobs/6087847330', 'https://github.com/ursacomputing/crossbow/actions/runs/3612457325/jobs/6087578750', 'https://github.com/ursacomputing/crossbow/actions/runs/3612457325/jobs/6087578705', 'https://github.com/ursacomputing/crossbow/actions/runs/3612457325/jobs/6087578644', 'https://github.com/ursacomputing/crossbow/actions/runs/3612457325/jobs/6087578599']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-java-jars,github,{},java-jars/github.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612462672/jobs/6087588114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612456773/jobs/6087577544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-python-sdist,github,{},python-sdist/github.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087975498', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087804781', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087804726', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087804679', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087804615', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087804562', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087804483', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087676721', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087643689', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087643658', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087643625', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087643594', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087643551', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087643514', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087643475', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087643421', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087581995', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087581923', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087581246', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087581191', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087581125', 'https://github.com/ursacomputing/crossbow/actions/runs/3612455390/jobs/6087574329']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612459655/jobs/6087582733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871212458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612460912/jobs/6087584978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871197623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612466810/jobs/6087595000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871199128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612465995/jobs/6087593881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871219629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612468120/jobs/6087597028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612452499/jobs/6087569151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612460490/jobs/6087584283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612457903/jobs/6087579660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612464295/jobs/6087591055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612463159/jobs/6087589052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612460249/jobs/6087583934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612464533/jobs/6087591433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612457495/jobs/6087578959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612465716/jobs/6087593432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9871218985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612454421/jobs/6087572343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871213509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612468759/jobs/6087598023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871228480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612454592/jobs/6087572658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9871225566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3612466079/jobs/6087594005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9871198364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612468320/jobs/6087597365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612462458/jobs/6087587780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612456568/jobs/6087577133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612463760/jobs/6087590073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3612465219/jobs/6087592640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-04-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
diff --git a/csv_reports/nightly-packaging-2022-12-05-0.csv b/csv_reports/nightly-packaging-2022-12-05-0.csv
deleted file mode 100644
index 846325d1b0e..00000000000
--- a/csv_reports/nightly-packaging-2022-12-05-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618315340/jobs/6098028682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883774098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618331990/jobs/6098065842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883729515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618325973/jobs/6098053318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883760076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618308782/jobs/6098014351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618325648/jobs/6098052599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883699302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618306963/jobs/6098010097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883698193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618329289/jobs/6098060411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618329975/jobs/6098062085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9888228733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9888637880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9888707342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9890281816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9890713168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9888423778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9888567834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9888612197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9889292893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9888475905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9889093207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9889241023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9888528807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9888751683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9889046256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9888658949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9889175332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9888430555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9891097792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9888994361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9889066020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9890813806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9888383471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9889135848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9889723942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9888581200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9889785258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9889461812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9889274154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9889386278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9889231614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618321735/jobs/6098043679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883690844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618303245/jobs/6098002438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883721979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618306459/jobs/6098009273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3618305940/jobs/6098008643', 'https://github.com/ursacomputing/crossbow/actions/runs/3618305940/jobs/6098008551', 'https://github.com/ursacomputing/crossbow/actions/runs/3618305940/jobs/6098008439', 'https://github.com/ursacomputing/crossbow/actions/runs/3618305940/jobs/6098008297']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3618317850/jobs/6098035281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3618328712/jobs/6098767433', 'https://github.com/ursacomputing/crossbow/actions/runs/3618328712/jobs/6098059027', 'https://github.com/ursacomputing/crossbow/actions/runs/3618328712/jobs/6098058897', 'https://github.com/ursacomputing/crossbow/actions/runs/3618328712/jobs/6098058786', 'https://github.com/ursacomputing/crossbow/actions/runs/3618328712/jobs/6098058670']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-java-jars,github,{},java-jars/github.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618299042/jobs/6097993723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618316894/jobs/6098032698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-python-sdist,github,{},python-sdist/github.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6099169920', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098526588', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098526476', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098526351', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098526217', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098526094', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098525920', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098283553', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098195313', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098195196', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098195055', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098194963', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098194841', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098194705', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098194581', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098194402', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098044468', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098044365', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098044185', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098044058', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098043893', 'https://github.com/ursacomputing/crossbow/actions/runs/3618316221/jobs/6098030843']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618324530/jobs/6098049402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883688202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618304083/jobs/6098004471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883743584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618312433/jobs/6098022339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883726414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618327817/jobs/6098056915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883682136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618319477/jobs/6098038441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618311828/jobs/6098020887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618296715/jobs/6097988877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618295140/jobs/6097986040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618330506/jobs/6098063009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618323113/jobs/6098046414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618320705/jobs/6098041240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618317499/jobs/6098034430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618329003/jobs/6098059527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618314836/jobs/6098027796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9883765127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618313326/jobs/6098024697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883702559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618322635/jobs/6098045385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883750439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618331531/jobs/6098064967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9883756108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3618310767/jobs/6098018712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9883746076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618325141/jobs/6098051059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618304470/jobs/6098005273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618330935/jobs/6098063781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618312199/jobs/6098021722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3618302006/jobs/6097999960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-05-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,54ff2d8777717ea5bb811f3653deeb12fc93452e
diff --git a/csv_reports/nightly-packaging-2022-12-06-0.csv b/csv_reports/nightly-packaging-2022-12-06-0.csv
deleted file mode 100644
index 9d8c5c7f58e..00000000000
--- a/csv_reports/nightly-packaging-2022-12-06-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627847362/jobs/6118172555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910143549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627865714/jobs/6118214488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910145718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627836834/jobs/6118150664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910137618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627831088/jobs/6118138833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627855938/jobs/6118191995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910128655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627849032/jobs/6118176902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910057989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627863189/jobs/6118208581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627833427/jobs/6118143575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9913690417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9913636965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9913995330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9913237185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9915440616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9914359739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9912173676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9912130576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9913327757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9913637465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9914300545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9912088849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9912721641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9913596213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9913590172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9912760946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9913910471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9913937234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9915438684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9913553322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9912683181'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9914284450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9914199427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9913948358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9914321536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9914628293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9913896231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9913543442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9913867972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9913787633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9912902057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3627846400/jobs/6118170677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910115069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627842257/jobs/6118162303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910116217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627832040/jobs/6118140666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3627858987/jobs/6118199132', 'https://github.com/ursacomputing/crossbow/actions/runs/3627858987/jobs/6118199008', 'https://github.com/ursacomputing/crossbow/actions/runs/3627858987/jobs/6118198889', 'https://github.com/ursacomputing/crossbow/actions/runs/3627858987/jobs/6118198766']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3627861796/jobs/6118205950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3627848048/jobs/6118740016', 'https://github.com/ursacomputing/crossbow/actions/runs/3627848048/jobs/6118174991', 'https://github.com/ursacomputing/crossbow/actions/runs/3627848048/jobs/6118174874', 'https://github.com/ursacomputing/crossbow/actions/runs/3627848048/jobs/6118174740', 'https://github.com/ursacomputing/crossbow/actions/runs/3627848048/jobs/6118174627']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-java-jars,github,{},java-jars/github.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627839117/jobs/6118155330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627856942/jobs/6118194357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-python-sdist,github,{},python-sdist/github.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6119336503', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118823774', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118823652', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118823516', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118823386', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118823245', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118823051', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118477822', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118379664', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118379549', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118379453', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118379366', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118379263', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118379162', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118379070', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118378940', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118222573', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118222497', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118222407', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118222298', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118222162', 'https://github.com/ursacomputing/crossbow/actions/runs/3627865050/jobs/6118212993']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627848693/jobs/6118176190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910092851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627864808/jobs/6118212253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910093889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627853794/jobs/6118187619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910151205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627857716/jobs/6118196148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910096784'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627831525/jobs/6118139735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627838743/jobs/6118154432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627860511/jobs/6118202754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627838006/jobs/6118152889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627833117/jobs/6118142916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627839864/jobs/6118157166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627863646/jobs/6118209446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627838396/jobs/6118153615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627839510/jobs/6118156431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627841693/jobs/6118160979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910142472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627849461/jobs/6118178159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910070766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627844113/jobs/6118166285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9910098101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627856636/jobs/6118193637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9910121023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627865445/jobs/6118213930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9910092004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627836329/jobs/6118149704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627850975/jobs/6118181026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627857266/jobs/6118195299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627840695/jobs/6118159097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3627835499/jobs/6118148153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-06-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4daddd7cc31325ce34bb8b0fde562dba6ee3c731
diff --git a/csv_reports/nightly-packaging-2022-12-07-0.csv b/csv_reports/nightly-packaging-2022-12-07-0.csv
deleted file mode 100644
index 939c202b6be..00000000000
--- a/csv_reports/nightly-packaging-2022-12-07-0.csv
+++ /dev/null
@@ -1,88 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637183136/jobs/6137916122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936244274'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637178186/jobs/6137906189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936305774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637173549/jobs/6137896534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936266250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637175949/jobs/6137901926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637195214/jobs/6137943536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936321458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637184351/jobs/6137918914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936278016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637179456/jobs/6137908084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637179883/jobs/6137909114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/9936603870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9936346777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py310-arm64,azure,{'config': 'linux_aarch64_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py310-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9936290187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py310-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py310-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9937385816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py310-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py310-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9937887429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py310-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.21python3.10.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9936331069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py37-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py37-cpu-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9936438042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py37-cpu-r40,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.0'}",conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py37-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9936641251'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py37-cpu-r41,azure,"{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.7.____cpython', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py37-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9936268004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py37-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py37-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9936271079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py37-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.7.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9936318233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py38-arm64,azure,{'config': 'linux_aarch64_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py38-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9936285105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py38-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py38-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9936358469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py38-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py38-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9936307541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py38-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.18python3.8.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9936400669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py39-arm64,azure,{'config': 'linux_aarch64_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py39-cpu,failure,['https://github.com/ursacomputing/crossbow/runs/9936279228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py39-cpu,azure,{'config': 'linux_64_c_compiler_version9cuda_compiler_versionNonecxx_compiler_version9numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py39-cuda,failure,['https://github.com/ursacomputing/crossbow/runs/9936325769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py39-cuda,azure,{'config': 'linux_64_c_compiler_version7cuda_compiler_version10.2cxx_compiler_version7numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-linux-gcc-py39-ppc64le,failure,['https://github.com/ursacomputing/crossbow/runs/9936518053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-linux-gcc-py39-ppc64le,azure,{'config': 'linux_ppc64le_numpy1.19python3.9.____cpython'},conda-recipes/azure.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-osx-arm64-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9937816093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-osx-arm64-clang-py310,azure,{'config': 'osx_arm64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-osx-arm64-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9936530508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-osx-arm64-clang-py38,azure,{'config': 'osx_arm64_numpy1.19python3.8.____cpython'},conda-recipes/azure.osx.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-osx-arm64-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9936471896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-osx-arm64-clang-py39,azure,{'config': 'osx_arm64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-osx-clang-py310,failure,['https://github.com/ursacomputing/crossbow/runs/9937713641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-osx-clang-py310,azure,{'config': 'osx_64_numpy1.21python3.10.____cpython'},conda-recipes/azure.osx.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-osx-clang-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9936625726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-osx-clang-py37-r40,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.0'}",conda-recipes/azure.osx.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-osx-clang-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9936523216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-osx-clang-py37-r41,azure,"{'config': 'osx_64_numpy1.18python3.7.____cpython', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-osx-clang-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9936785400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-osx-clang-py38,azure,{'config': 'osx_64_numpy1.18python3.8.____cpython'},conda-recipes/azure.osx.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-osx-clang-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9936543087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-osx-clang-py39,azure,{'config': 'osx_64_numpy1.19python3.9.____cpython'},conda-recipes/azure.osx.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-win-vs2019-py310,success,['https://github.com/ursacomputing/crossbow/runs/9937833790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-win-vs2019-py310,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.21python3.10.____cpython'},conda-recipes/azure.win.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-win-vs2019-py37-r40,failure,['https://github.com/ursacomputing/crossbow/runs/9936389701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-win-vs2019-py37-r40,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-win-vs2019-py37-r41,failure,['https://github.com/ursacomputing/crossbow/runs/9936668548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-win-vs2019-py37-r41,azure,"{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.7.____cpython', 'r_config': 'win_64_r_base4.0'}",conda-recipes/azure.win.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-win-vs2019-py38,failure,['https://github.com/ursacomputing/crossbow/runs/9936555941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-win-vs2019-py38,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.18python3.8.____cpython'},conda-recipes/azure.win.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-conda-win-vs2019-py39,failure,['https://github.com/ursacomputing/crossbow/runs/9936665175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-azure-conda-win-vs2019-py39,azure,{'config': 'win_64_cuda_compiler_versionNonenumpy1.19python3.9.____cpython'},conda-recipes/azure.win.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3637199245/jobs/6137952598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936294567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637180257/jobs/6137910173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936272454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637183647/jobs/6137917131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3637170911/jobs/6137891214', 'https://github.com/ursacomputing/crossbow/actions/runs/3637170911/jobs/6137891127', 'https://github.com/ursacomputing/crossbow/actions/runs/3637170911/jobs/6137891018', 'https://github.com/ursacomputing/crossbow/actions/runs/3637170911/jobs/6137890883']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3637189839/jobs/6137932099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3637181133/jobs/6138419995', 'https://github.com/ursacomputing/crossbow/actions/runs/3637181133/jobs/6137912674', 'https://github.com/ursacomputing/crossbow/actions/runs/3637181133/jobs/6137912547', 'https://github.com/ursacomputing/crossbow/actions/runs/3637181133/jobs/6137912418', 'https://github.com/ursacomputing/crossbow/actions/runs/3637181133/jobs/6137912301']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-java-jars,github,{},java-jars/github.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637197963/jobs/6137950047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637184893/jobs/6137920482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-python-sdist,github,{},python-sdist/github.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6139011528', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138467524', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138467391', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138467272', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138467146', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138467028', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138466820', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138159720', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138118086', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138117983', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138117915', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138117825', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138117725', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138117617', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138117515', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6138117362', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6137975194', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6137975128', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6137975025', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6137974927', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6137974800', 'https://github.com/ursacomputing/crossbow/actions/runs/3637205505/jobs/6137965702']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637202707/jobs/6137960165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9936292766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637185608/jobs/6137922027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936282555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637188868/jobs/6137929535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936237780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637181649/jobs/6137913170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936320244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637193545/jobs/6137940106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637185223/jobs/6137921289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637197633/jobs/6137949227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637188223/jobs/6137927768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637200187/jobs/6137954238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637186735/jobs/6137924240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637201967/jobs/6137958481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637196988/jobs/6137947580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637204653/jobs/6137964005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637174079/jobs/6137897638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936236831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637182770/jobs/6137915305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/9936231178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637187190/jobs/6137925242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936303484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637196605/jobs/6137946566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936313351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637205090/jobs/6137964905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/9936308970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637204210/jobs/6137963159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637191726/jobs/6137936043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637176254/jobs/6137902571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637194293/jobs/6137941714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3637189144/jobs/6137930528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-07-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,9b0f3d71a99f0d14f6d8e51524dc5a74ca5cea8e
diff --git a/csv_reports/nightly-packaging-2022-12-14-0.csv b/csv_reports/nightly-packaging-2022-12-14-0.csv
deleted file mode 100644
index 655d5602c1b..00000000000
--- a/csv_reports/nightly-packaging-2022-12-14-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693102232/jobs/6252701891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084461147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693090403/jobs/6252676785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084413456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693104207/jobs/6252706784'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084453847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693117555/jobs/6252735254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693093184/jobs/6252682519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084430750'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693112765/jobs/6252725507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084449882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693098477/jobs/6252694056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693088859/jobs/6252673459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10084456136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10084533836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10084619405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10087466195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-linux-ppc64le-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10087364186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10086886843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10086571530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10089006558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10086902283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-osx-arm64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10089468839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-osx-arm64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10087291590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-osx-arm64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10087820579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10087549163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10087737614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10087967278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-win-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10087445534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-win-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10089906545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-conda-win-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10088678270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3693097332/jobs/6252691566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084428025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693091872/jobs/6252679726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084419164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693113778/jobs/6252727256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3693105944/jobs/6252710993', 'https://github.com/ursacomputing/crossbow/actions/runs/3693105944/jobs/6252710866', 'https://github.com/ursacomputing/crossbow/actions/runs/3693105944/jobs/6252710761', 'https://github.com/ursacomputing/crossbow/actions/runs/3693105944/jobs/6252710630']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3693094692/jobs/6252685871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3693100806/jobs/6253454040', 'https://github.com/ursacomputing/crossbow/actions/runs/3693100806/jobs/6252699423', 'https://github.com/ursacomputing/crossbow/actions/runs/3693100806/jobs/6252699298', 'https://github.com/ursacomputing/crossbow/actions/runs/3693100806/jobs/6252699035', 'https://github.com/ursacomputing/crossbow/actions/runs/3693100806/jobs/6252698868']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-java-jars,github,{},java-jars/github.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693098103/jobs/6252693295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693115850/jobs/6252731494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-python-sdist,github,{},python-sdist/github.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6253864979', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6253354027', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6253353876', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6253353739', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6253353615', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6253353440', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6253353280', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252994642', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252879660', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252879541', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252879418', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252879282', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252879176', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252879055', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252878916', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252878745', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252693850', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252693720', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252693615', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252693512', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252693368', 'https://github.com/ursacomputing/crossbow/actions/runs/3693094215/jobs/6252685020']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693097682/jobs/6252692266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084452551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693085374/jobs/6252666234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084470043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693109733/jobs/6252718936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084466201'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693106634/jobs/6252711962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084417511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693105155/jobs/6252708819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693108914/jobs/6252717464'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693086121/jobs/6252667745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693088053/jobs/6252671728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693089665/jobs/6252675173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693096507/jobs/6252689745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693106857/jobs/6252712418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693087156/jobs/6252669753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693110178/jobs/6252719887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693101257/jobs/6252699736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084440077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693112450/jobs/6252724747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084478319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693086915/jobs/6252669227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084474568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693115369/jobs/6252730662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084462550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693099102/jobs/6252695345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10084433788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693118463/jobs/6252737212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693117214/jobs/6252734552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693102637/jobs/6252702837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693108198/jobs/6252715930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b21bf749f291367f85ad61751205e7deeee92bc7
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3693109294/jobs/6252718235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b21bf749f291367f85ad61751205e7deeee92bc7
diff --git a/csv_reports/nightly-packaging-2022-12-15-0.csv b/csv_reports/nightly-packaging-2022-12-15-0.csv
deleted file mode 100644
index cdc6a5dc6ac..00000000000
--- a/csv_reports/nightly-packaging-2022-12-15-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3702417225/jobs/6272673358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110431079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3702393410/jobs/6272619749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110437921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3702394239/jobs/6272621512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110457661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702403881/jobs/6272641767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3702406344/jobs/6272647211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110482419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3702393840/jobs/6272620700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110427160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702395222/jobs/6272623440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702397454/jobs/6272628492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10110507984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10110756693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10113150391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10112548037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-linux-ppc64le-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10110495067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10114355775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10116075426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10115014268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10112372138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-osx-arm64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10112907788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-osx-arm64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10113849130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-osx-arm64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10113065167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10115922547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10113503701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10113354861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-win-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10113176620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-win-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10110489937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-conda-win-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10113341803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3702412438/jobs/6272662625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110475993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702403293/jobs/6272640758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110454499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702399177/jobs/6272632055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3702418672/jobs/6272677101', 'https://github.com/ursacomputing/crossbow/actions/runs/3702418672/jobs/6272677015', 'https://github.com/ursacomputing/crossbow/actions/runs/3702418672/jobs/6272676918', 'https://github.com/ursacomputing/crossbow/actions/runs/3702418672/jobs/6272676814']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3702405322/jobs/6272644706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3702415363/jobs/6273214672', 'https://github.com/ursacomputing/crossbow/actions/runs/3702415363/jobs/6272669919', 'https://github.com/ursacomputing/crossbow/actions/runs/3702415363/jobs/6272669827', 'https://github.com/ursacomputing/crossbow/actions/runs/3702415363/jobs/6272669707', 'https://github.com/ursacomputing/crossbow/actions/runs/3702415363/jobs/6272669574']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-java-jars,github,{},java-jars/github.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702390182/jobs/6272612829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702397189/jobs/6272627839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-python-sdist,github,{},python-sdist/github.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6273823880', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6273100380', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6273100255', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6273100117', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6273099972', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6273099839', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6273099669', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272878197', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272781726', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272781610', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272781479', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272781360', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272781231', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272781108', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272780997', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272780829', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272624594', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272624460', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272624332', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272624172', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272624015', 'https://github.com/ursacomputing/crossbow/actions/runs/3702391217/jobs/6272614799']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702407472/jobs/6272649899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110441018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702405758/jobs/6272645758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110468259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702409201/jobs/6272654163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110442418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702390663/jobs/6272613688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110441122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702389776/jobs/6272611998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702415822/jobs/6272670661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702391572/jobs/6272615552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702398569/jobs/6272630888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702418378/jobs/6272676030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702402739/jobs/6272639853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702389047/jobs/6272610402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702414529/jobs/6272667292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702413360/jobs/6272664580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702411976/jobs/6272661473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110470531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702400054/jobs/6272633960'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110498199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702394726/jobs/6272622385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110479139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702411583/jobs/6272660603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110417113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702393053/jobs/6272618889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10110462354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702418040/jobs/6272675203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702413741/jobs/6272665437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702402025/jobs/6272638121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702392333/jobs/6272617207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3702401699/jobs/6272637426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-15-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5c1044fce55ed0e373a622cb8ee3b97a1a34799a
diff --git a/csv_reports/nightly-packaging-2022-12-16-0.csv b/csv_reports/nightly-packaging-2022-12-16-0.csv
deleted file mode 100644
index b46fa317105..00000000000
--- a/csv_reports/nightly-packaging-2022-12-16-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3711543280/jobs/6292083831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10135548622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3711535853/jobs/6292067309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10135605672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3711533041/jobs/6292061483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10135541860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711541797/jobs/6292080687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3711536571/jobs/6292069133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10135569027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3711549675/jobs/6292097619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10135532143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711540701/jobs/6292078002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711543683/jobs/6292084649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10137578081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10135765026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10135611556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10137653757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-linux-ppc64le-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10137330673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10137514004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10137244140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10139804578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10139068616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10137532067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10138256641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10139838632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10138097998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10140610465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10138514046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10138207241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10139160915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10138262980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3711551249/jobs/6292101143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10135587377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711552535/jobs/6292103503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10135556944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3711550932/jobs/6292100497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3711544987/jobs/6292087532', 'https://github.com/ursacomputing/crossbow/actions/runs/3711544987/jobs/6292087439', 'https://github.com/ursacomputing/crossbow/actions/runs/3711544987/jobs/6292087323', 'https://github.com/ursacomputing/crossbow/actions/runs/3711544987/jobs/6292087222']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3711540327/jobs/6292077236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3711552034/jobs/6292728632', 'https://github.com/ursacomputing/crossbow/actions/runs/3711552034/jobs/6292103004', 'https://github.com/ursacomputing/crossbow/actions/runs/3711552034/jobs/6292102890', 'https://github.com/ursacomputing/crossbow/actions/runs/3711552034/jobs/6292102765', 'https://github.com/ursacomputing/crossbow/actions/runs/3711552034/jobs/6292102656']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-java-jars,github,{},java-jars/github.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711530924/jobs/6292055762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711546017/jobs/6292089574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-python-sdist,github,{},python-sdist/github.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292847891', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292470970', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292470839', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292470731', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292470634', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292470532', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292470398', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292301576', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292215937', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292215868', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292215789', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292215706', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292215614', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292215517', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292215438', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292215315', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292084876', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292084753', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292084641', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292084545', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292084402', 'https://github.com/ursacomputing/crossbow/actions/runs/3711539440/jobs/6292075477']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711546372/jobs/6292090409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10135572369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711537273/jobs/6292070697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10135565151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711554137/jobs/6292106739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10135551818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711529708/jobs/6292053022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10135533268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711534547/jobs/6292064624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711547547/jobs/6292092889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711548241/jobs/6292094384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711544108/jobs/6292085449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711550592/jobs/6292099689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711526002/jobs/6292044404'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711545706/jobs/6292088650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711532684/jobs/6292060475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711529254/jobs/6292051728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711552998/jobs/6292104440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10135546477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711538886/jobs/6292074190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10135528932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711528087/jobs/6292048661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10135594335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711545344/jobs/6292087956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10135581733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711542131/jobs/6292081415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10135588227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711547767/jobs/6292093325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711542908/jobs/6292083030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711550012/jobs/6292098406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711553360/jobs/6292105220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3711533639/jobs/6292062835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,41b57d683ea73329af083540e6f67007bdd1d0c4
diff --git a/csv_reports/nightly-packaging-2022-12-17-0.csv b/csv_reports/nightly-packaging-2022-12-17-0.csv
deleted file mode 100644
index e7c7095b66f..00000000000
--- a/csv_reports/nightly-packaging-2022-12-17-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3719256604/jobs/6308000840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10155832309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3719263189/jobs/6308012106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10155840858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3719249224/jobs/6307985829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10155833228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719258538/jobs/6308004109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3719250800/jobs/6307989760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10155817566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3719259398/jobs/6308005542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10155844272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719261109/jobs/6308008639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719251963/jobs/6307992008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10155850444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10156560537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10156626418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10156586240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-linux-ppc64le-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10155845814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10156371556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10157298685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10157132793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10156531805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10156567489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10157383622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10156604674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10156612708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10156724130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10156717256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10156643285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10156669675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10156617071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3719263437/jobs/6308012451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10155821520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719255819/jobs/6307999392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10155827653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3719256961/jobs/6308001487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3719256780/jobs/6308001278', 'https://github.com/ursacomputing/crossbow/actions/runs/3719256780/jobs/6308001250', 'https://github.com/ursacomputing/crossbow/actions/runs/3719256780/jobs/6308001203', 'https://github.com/ursacomputing/crossbow/actions/runs/3719256780/jobs/6308001168']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3719262635/jobs/6308011080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3719261305/jobs/6308235024', 'https://github.com/ursacomputing/crossbow/actions/runs/3719261305/jobs/6308009123', 'https://github.com/ursacomputing/crossbow/actions/runs/3719261305/jobs/6308009074', 'https://github.com/ursacomputing/crossbow/actions/runs/3719261305/jobs/6308009029', 'https://github.com/ursacomputing/crossbow/actions/runs/3719261305/jobs/6308008981']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-java-jars,github,{},java-jars/github.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719250984/jobs/6307990186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719257219/jobs/6308001915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-python-sdist,github,{},python-sdist/github.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308387389', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308208553', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308208514', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308208472', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308208423', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308208372', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308208322', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308088474', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308054071', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308054038', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308053981', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308053947', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308053925', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308053895', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308053869', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308053835', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308000803', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308000758', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308000714', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308000671', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6308000620', 'https://github.com/ursacomputing/crossbow/actions/runs/3719254384/jobs/6307996730']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719262805/jobs/6308011418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10155816601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719259632/jobs/6308005916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10155843863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719249908/jobs/6307987475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10155824411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719260785/jobs/6308008050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10155814908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719260227/jobs/6308007027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719258401/jobs/6308003899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719256012/jobs/6307999730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719253316/jobs/6307994592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719259003/jobs/6308004914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719257935/jobs/6308003145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719253599/jobs/6307995148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719249457/jobs/6307986322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719256434/jobs/6308000498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719264161/jobs/6308013512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10155821032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719254176/jobs/6307996253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10155834205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719259939/jobs/6308006480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10155828300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719259192/jobs/6308005257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10155840037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719251607/jobs/6307991313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10155840576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719262283/jobs/6308010617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719260458/jobs/6308007423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719260640/jobs/6308007761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719264414/jobs/6308013807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3719251761/jobs/6307991607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-17-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,7e5730f4f64c9e6229840b439832e90cc84489ee
diff --git a/csv_reports/nightly-packaging-2022-12-18-0.csv b/csv_reports/nightly-packaging-2022-12-18-0.csv
deleted file mode 100644
index 20af802d5e7..00000000000
--- a/csv_reports/nightly-packaging-2022-12-18-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724024685/jobs/6315911072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164938584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724026451/jobs/6315914065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164935280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724018931/jobs/6315900223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164947544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724023096/jobs/6315908168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724019252/jobs/6315901041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164942472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3724018767/jobs/6315899870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164936113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724020450/jobs/6315903151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724030464/jobs/6315920895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10164961369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10164964577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10165533042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10164958447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-linux-ppc64le-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10164986210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10166180677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10165645220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10165706480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10165503192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10165624824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10166403881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10165746524'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10165812850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10165812699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10165846246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10165858986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10165776391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,6d3aec49d697326f500f704b7283116b6b35f195
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10166308331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,6d3aec49d697326f500f704b7283116b6b35f195
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724031255/jobs/6315922279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164940950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724022072/jobs/6315906201'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164935789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3724030668/jobs/6315921198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,6d3aec49d697326f500f704b7283116b6b35f195
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3724021459/jobs/6315905255', 'https://github.com/ursacomputing/crossbow/actions/runs/3724021459/jobs/6315905200', 'https://github.com/ursacomputing/crossbow/actions/runs/3724021459/jobs/6315905147', 'https://github.com/ursacomputing/crossbow/actions/runs/3724021459/jobs/6315905074']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,6d3aec49d697326f500f704b7283116b6b35f195
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3724032726/jobs/6315924710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,6d3aec49d697326f500f704b7283116b6b35f195
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3724023719/jobs/6316124724', 'https://github.com/ursacomputing/crossbow/actions/runs/3724023719/jobs/6315909543', 'https://github.com/ursacomputing/crossbow/actions/runs/3724023719/jobs/6315909499', 'https://github.com/ursacomputing/crossbow/actions/runs/3724023719/jobs/6315909446', 'https://github.com/ursacomputing/crossbow/actions/runs/3724023719/jobs/6315909383']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-java-jars,github,{},java-jars/github.yml,6d3aec49d697326f500f704b7283116b6b35f195
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724031664/jobs/6315922929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,6d3aec49d697326f500f704b7283116b6b35f195
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724028211/jobs/6315917518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-python-sdist,github,{},python-sdist/github.yml,6d3aec49d697326f500f704b7283116b6b35f195
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6316325908', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6316137260', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6316137214', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6316137165', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6316137107', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6316137067', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6316137015', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6316001999', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315967289', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315967257', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315967216', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315967177', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315967154', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315967126', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315967106', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315967085', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315922050', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315922026', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315922003', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315921982', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315921940', 'https://github.com/ursacomputing/crossbow/actions/runs/3724028942/jobs/6315918308']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,6d3aec49d697326f500f704b7283116b6b35f195
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724021050/jobs/6315904330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164945750'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724020867/jobs/6315903982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164949918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724033793/jobs/6315926456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164926308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724030876/jobs/6315921582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164945355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724020229/jobs/6315902724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724025792/jobs/6315912936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724028294/jobs/6315917099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724031020/jobs/6315922180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724029566/jobs/6315919390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724028656/jobs/6315917733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724028494/jobs/6315917411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724022692/jobs/6315907327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724022334/jobs/6315906644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724032112/jobs/6315923621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164941639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724021265/jobs/6315904709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164942841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724019725/jobs/6315901881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10164951983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3724033111/jobs/6315925313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10164934479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724026046/jobs/6315913396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10164940738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3724030089/jobs/6315920257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724031186/jobs/6315922153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724019975/jobs/6315902334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724029751/jobs/6315919716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,6d3aec49d697326f500f704b7283116b6b35f195
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3724031897/jobs/6315923275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-18-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,6d3aec49d697326f500f704b7283116b6b35f195
diff --git a/csv_reports/nightly-packaging-2022-12-19-0.csv b/csv_reports/nightly-packaging-2022-12-19-0.csv
deleted file mode 100644
index 925d58983e8..00000000000
--- a/csv_reports/nightly-packaging-2022-12-19-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729745015/jobs/6325997792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176806467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729746069/jobs/6326000091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176843671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729746430/jobs/6326000995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176874478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729762641/jobs/6326036811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729739366/jobs/6325984020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176824604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729750030/jobs/6326009261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176880498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729745306/jobs/6325998186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729759426/jobs/6326030505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-clean,pending,['https://github.com/ursacomputing/crossbow/runs/10176874541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-linux-aarch64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10176882247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10181708815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10181277963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-linux-ppc64le-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10181629066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-linux-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10176865935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10184095692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-linux-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10176843473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-linux-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10176867947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10184175380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-osx-arm64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10176850436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-osx-arm64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10176869266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-osx-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10176826734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10181412874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-osx-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10176823576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-win-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10176827849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-win-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10176804663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-conda-win-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10176849809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729763726/jobs/6326039293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176871188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729745703/jobs/6325998994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176808905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3729753269/jobs/6326016297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3729753678/jobs/6326017650', 'https://github.com/ursacomputing/crossbow/actions/runs/3729753678/jobs/6326017555', 'https://github.com/ursacomputing/crossbow/actions/runs/3729753678/jobs/6326017422', 'https://github.com/ursacomputing/crossbow/actions/runs/3729753678/jobs/6326017218']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3729754007/jobs/6326018078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3729756458/jobs/6326971890', 'https://github.com/ursacomputing/crossbow/actions/runs/3729756458/jobs/6326024199', 'https://github.com/ursacomputing/crossbow/actions/runs/3729756458/jobs/6326024057', 'https://github.com/ursacomputing/crossbow/actions/runs/3729756458/jobs/6326023922', 'https://github.com/ursacomputing/crossbow/actions/runs/3729756458/jobs/6326023806']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-java-jars,github,{},java-jars/github.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729747080/jobs/6326002560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729756132/jobs/6326023129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-python-sdist,github,{},python-sdist/github.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6327459644', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326572933', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326572802', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326572688', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326572545', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326572417', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326572221', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326270046', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326185258', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326185156', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326184985', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326184885', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326184784', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326184707', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326184620', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326184494', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326033928', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326033802', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326033680', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326033540', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326033380', 'https://github.com/ursacomputing/crossbow/actions/runs/3729755218/jobs/6326021173']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729738428/jobs/6325982114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176875617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729751552/jobs/6326013029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176861580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729762339/jobs/6326036117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176865844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729750339/jobs/6326010097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176859852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729740566/jobs/6325986785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729754582/jobs/6326019371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729737943/jobs/6325981276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729737573/jobs/6325980504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729758893/jobs/6326029254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729748723/jobs/6326006013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729752917/jobs/6326015610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729761418/jobs/6326034342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729744629/jobs/6325996698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729736899/jobs/6325978786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176851844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729746750/jobs/6326001747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176872908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729741654/jobs/6325989444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10176828474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729761893/jobs/6326035112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10176844857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729752459/jobs/6326014822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10176869300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729754332/jobs/6326018914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729736617/jobs/6325978240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729740853/jobs/6325987354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729741333/jobs/6325988598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3729750624/jobs/6326010864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,dac3a00f87f0a63519ef4d96a3968e56fcfa3248
diff --git a/csv_reports/nightly-packaging-2022-12-20-0.csv b/csv_reports/nightly-packaging-2022-12-20-0.csv
deleted file mode 100644
index a5efb9f3a3d..00000000000
--- a/csv_reports/nightly-packaging-2022-12-20-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738821535/jobs/6345316955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201833488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738828631/jobs/6345333080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201849638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738804665/jobs/6345280515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201846441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738819038/jobs/6345312055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738821882/jobs/6345317818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201819030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738808329/jobs/6345288514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201840563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738824071/jobs/6345323242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738824781/jobs/6345324809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10201857978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10204174709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-linux-aarch64-cpu-r41,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10206926418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10204658882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10204041450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10203766843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10203837927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-linux-x64-cuda-py3,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-osx-arm64-cpu-py3,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10204327841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10206921320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10204651113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10204969322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10204854567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10207790037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10204619068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10206246578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738827167/jobs/6345329878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201796432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738805799/jobs/6345283171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201850554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3738815544/jobs/6345304521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3738826071/jobs/6345327841', 'https://github.com/ursacomputing/crossbow/actions/runs/3738826071/jobs/6345327721', 'https://github.com/ursacomputing/crossbow/actions/runs/3738826071/jobs/6345327609', 'https://github.com/ursacomputing/crossbow/actions/runs/3738826071/jobs/6345327499']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3738820334/jobs/6345314344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3738805055/jobs/6346231903', 'https://github.com/ursacomputing/crossbow/actions/runs/3738805055/jobs/6345281793', 'https://github.com/ursacomputing/crossbow/actions/runs/3738805055/jobs/6345281665', 'https://github.com/ursacomputing/crossbow/actions/runs/3738805055/jobs/6345281528', 'https://github.com/ursacomputing/crossbow/actions/runs/3738805055/jobs/6345281431']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-java-jars,github,{},java-jars/github.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738818172/jobs/6345310100'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738807031/jobs/6345285918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-python-sdist,github,{},python-sdist/github.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6346495326', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345803262', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345803129', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345803016', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345802888', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345802757', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345802603', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345561068', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345478287', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345478205', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345478103', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345478022', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345477944', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345477841', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345477712', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345477590', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345312730', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345312641', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345312556', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345312452', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345312254', 'https://github.com/ursacomputing/crossbow/actions/runs/3738814203/jobs/6345301548']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738822782/jobs/6345319989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201792426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738808741/jobs/6345289448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201837653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738813016/jobs/6345298430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201796638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738820777/jobs/6345315279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201805226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738803867/jobs/6345278901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738827603/jobs/6345330786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738824516/jobs/6345324254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738812618/jobs/6345297507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738832094/jobs/6345340794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738803081/jobs/6345276990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738807944/jobs/6345287807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738807440/jobs/6345286586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738829745/jobs/6345335331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738819438/jobs/6345312838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201829571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738818653/jobs/6345311107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201836765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738810246/jobs/6345292655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201794510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3738813751/jobs/6345300403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10201825633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738805426/jobs/6345282219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10201808526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738828939/jobs/6345333753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738832741/jobs/6345342326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738813369/jobs/6345299396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738829289/jobs/6345334436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3738825621/jobs/6345326553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4e9b65a4a33f57005472eaf9f2654ae61ff83101
diff --git a/csv_reports/nightly-packaging-2022-12-21-0.csv b/csv_reports/nightly-packaging-2022-12-21-0.csv
deleted file mode 100644
index 2d95d638782..00000000000
--- a/csv_reports/nightly-packaging-2022-12-21-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747705004/jobs/6364216300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226423722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747696678/jobs/6364196606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226420286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747697828/jobs/6364199608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226394278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747687690/jobs/6364176671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747690927/jobs/6364183050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226353191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747692902/jobs/6364187912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226416998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747705938/jobs/6364218423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747688272/jobs/6364178012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10228721652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10229079156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10229215232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10228840609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10230885771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10230145641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10230670870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10228550357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10228432734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10228659877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10231896135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10231007397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10231336062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10229291340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10232130250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10229626883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10228877959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10229623827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747708940/jobs/6364224607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226398681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747695228/jobs/6364192692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226401435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3747709199/jobs/6364225335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3747688595/jobs/6364178978', 'https://github.com/ursacomputing/crossbow/actions/runs/3747688595/jobs/6364178858', 'https://github.com/ursacomputing/crossbow/actions/runs/3747688595/jobs/6364178770', 'https://github.com/ursacomputing/crossbow/actions/runs/3747688595/jobs/6364178678']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3747684023/jobs/6364168899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3747710531/jobs/6365096788', 'https://github.com/ursacomputing/crossbow/actions/runs/3747710531/jobs/6364233239', 'https://github.com/ursacomputing/crossbow/actions/runs/3747710531/jobs/6364233114', 'https://github.com/ursacomputing/crossbow/actions/runs/3747710531/jobs/6364232997', 'https://github.com/ursacomputing/crossbow/actions/runs/3747710531/jobs/6364228133']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-java-jars,github,{},java-jars/github.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747694644/jobs/6364191339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3747684483/jobs/6364169971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-python-sdist,github,{},python-sdist/github.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6365276148', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364676100', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364675955', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364675817', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364675719', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364675594', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364675462', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364432534', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364339333', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364339238', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364339076', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364338932', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364338806', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364338693', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364338531', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364338366', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364202644', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364202463', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364202271', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364202096', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364201908', 'https://github.com/ursacomputing/crossbow/actions/runs/3747694128/jobs/6364190369']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747702271/jobs/6364210387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226384751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747698557/jobs/6364201233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226385847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747684875/jobs/6364170526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226371011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747703676/jobs/6364213299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226421170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747699072/jobs/6364202346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747690521/jobs/6364182193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747693306/jobs/6364188632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747705251/jobs/6364216984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747699913/jobs/6364204188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747690004/jobs/6364181162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747696046/jobs/6364194776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747707913/jobs/6364222164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747685868/jobs/6364172495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747691349/jobs/6364184038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226413729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747701345/jobs/6364208115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226363855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747693687/jobs/6364189449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226363055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3747700543/jobs/6364206117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226409101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747704411/jobs/6364214894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10226422832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747686275/jobs/6364173501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747708417/jobs/6364223169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747704062/jobs/6364214087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747703175/jobs/6364212164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3747691895/jobs/6364185724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-21-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5e25af8860e3859bb4d17f22e4dbaa2309e5076d
diff --git a/csv_reports/nightly-packaging-2022-12-22-0.csv b/csv_reports/nightly-packaging-2022-12-22-0.csv
deleted file mode 100644
index 255fee324f8..00000000000
--- a/csv_reports/nightly-packaging-2022-12-22-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756205140/jobs/6382014529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249341882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756210875/jobs/6382027426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249395066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756217107/jobs/6382041865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249362855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756223229/jobs/6382055394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756218692/jobs/6382045256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249360008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756211570/jobs/6382029347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249350074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756224634/jobs/6382058451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756207330/jobs/6382019504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10254141924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-linux-aarch64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10249386803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-linux-aarch64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10249376680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-linux-aarch64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10249384787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-linux-ppc64le-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10249336124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-linux-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10249378712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-linux-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10249327116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-linux-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10249395410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-linux-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10249362771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-osx-arm64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10249367015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-osx-arm64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10249369706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-osx-arm64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10249353343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-osx-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10249394726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-osx-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10249331698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-osx-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10249391333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-win-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10249380601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-win-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10249383487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-conda-win-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10249393057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756205986/jobs/6382016312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249364788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756226905/jobs/6382063410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249328384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3756232126/jobs/6382074600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3756228891/jobs/6382068336', 'https://github.com/ursacomputing/crossbow/actions/runs/3756228891/jobs/6382068261', 'https://github.com/ursacomputing/crossbow/actions/runs/3756228891/jobs/6382068146', 'https://github.com/ursacomputing/crossbow/actions/runs/3756228891/jobs/6382068062']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3756211215/jobs/6382028383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3756222447/jobs/6382897916', 'https://github.com/ursacomputing/crossbow/actions/runs/3756222447/jobs/6382054050', 'https://github.com/ursacomputing/crossbow/actions/runs/3756222447/jobs/6382053910', 'https://github.com/ursacomputing/crossbow/actions/runs/3756222447/jobs/6382053792', 'https://github.com/ursacomputing/crossbow/actions/runs/3756222447/jobs/6382053687']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-java-jars,github,{},java-jars/github.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756217839/jobs/6382043493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756225440/jobs/6382060325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-python-sdist,github,{},python-sdist/github.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6383129462', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382536876', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382536779', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382536664', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382536551', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382536442', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382536250', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382273599', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382170844', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382170755', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382170665', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382170596', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382170517', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382170428', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382170339', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382170222', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382050278', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382050130', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382050021', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382049897', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382048569', 'https://github.com/ursacomputing/crossbow/actions/runs/3756216656/jobs/6382040916']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756204661/jobs/6382013699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249374630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756216017/jobs/6382039418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249348970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756212267/jobs/6382031213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249395964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756229969/jobs/6382070317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249329932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756226174/jobs/6382061825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756217501/jobs/6382042697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756222055/jobs/6382052817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756212922/jobs/6382032540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756221340/jobs/6382051252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-macos-mojave-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3756205555/jobs/6382015412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756212542/jobs/6382031660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756208336/jobs/6382021692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756213579/jobs/6382034079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756219864/jobs/6382048042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249345869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756208618/jobs/6382022160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249389625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756228220/jobs/6382066478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10249353975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756210087/jobs/6382025227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249337451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3756215428/jobs/6382037915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10249334554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3756206694/jobs/6382017951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756222863/jobs/6382054549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756227600/jobs/6382064940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756228614/jobs/6382067400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3756223497/jobs/6382056029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-22-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,139b74b1954fd84dc95cce0ec7e362a3c8ffed13
diff --git a/csv_reports/nightly-packaging-2022-12-23-0.csv b/csv_reports/nightly-packaging-2022-12-23-0.csv
deleted file mode 100644
index 9344a51a8d3..00000000000
--- a/csv_reports/nightly-packaging-2022-12-23-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764321132/jobs/6398636032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270571019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764328704/jobs/6398653105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270593785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764332049/jobs/6398660289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270554893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764336170/jobs/6398668594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764318653/jobs/6398630619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270589964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764331617/jobs/6398659220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270575180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764327084/jobs/6398649324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764324913/jobs/6398644693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-clean,pending,['https://github.com/ursacomputing/crossbow/runs/10270591716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10274913964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10275221485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-linux-aarch64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10270576457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-linux-ppc64le-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10270581400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10274103411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-linux-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10270582542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-linux-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10270584089'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10275660816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-osx-arm64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10270582266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-osx-arm64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10270589585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-osx-arm64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10270580550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10275042129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10274792216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-osx-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/10270567726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-win-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10270565051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10274603861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10275350387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764327929/jobs/6398651267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270569946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764327610/jobs/6398650531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270559039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3764332975/jobs/6398661971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3764328546/jobs/6398653112', 'https://github.com/ursacomputing/crossbow/actions/runs/3764328546/jobs/6398653013', 'https://github.com/ursacomputing/crossbow/actions/runs/3764328546/jobs/6398652929', 'https://github.com/ursacomputing/crossbow/actions/runs/3764328546/jobs/6398652840']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3764319206/jobs/6398631853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3764329395/jobs/6399344710', 'https://github.com/ursacomputing/crossbow/actions/runs/3764329395/jobs/6398654981', 'https://github.com/ursacomputing/crossbow/actions/runs/3764329395/jobs/6398654865', 'https://github.com/ursacomputing/crossbow/actions/runs/3764329395/jobs/6398654754', 'https://github.com/ursacomputing/crossbow/actions/runs/3764329395/jobs/6398654657']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-java-jars,github,{},java-jars/github.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764325485/jobs/6398645885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3764340219/jobs/6398677146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-python-sdist,github,{},python-sdist/github.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6400046808', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6399345915', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6399345837', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6399345758', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6399345690', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6399345610', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6399345509', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398866366', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398808163', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398808110', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398808025', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398807849', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398807762', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398807668', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398807600', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398807462', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398654901', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398654767', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398654634', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398654533', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398654399', 'https://github.com/ursacomputing/crossbow/actions/runs/3764325891/jobs/6398646714']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764331819/jobs/6398659728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270592947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764333622/jobs/6398663381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270550091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764331307/jobs/6398658462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270542258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764320259/jobs/6398633908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270582902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764333880/jobs/6398663936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764329736/jobs/6398655179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764323025/jobs/6398640480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764321615/jobs/6398637232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764337006/jobs/6398670473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764320853/jobs/6398635400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764338954/jobs/6398674503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764327334/jobs/6398649966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764337591/jobs/6398671898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764319624/jobs/6398632687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270539824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764330964/jobs/6398657875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270585440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764338164/jobs/6398672711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270538169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764321770/jobs/6398637516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270552616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764324359/jobs/6398643277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10270537352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764333258/jobs/6398662629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764339344/jobs/6398675226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764325153/jobs/6398645187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3764330053/jobs/6398655831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3764336725/jobs/6398669901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-23-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,1e15f07954594a0e0fb148a40a35c80f8a330311
diff --git a/csv_reports/nightly-packaging-2022-12-24-0.csv b/csv_reports/nightly-packaging-2022-12-24-0.csv
deleted file mode 100644
index 538db8d5175..00000000000
--- a/csv_reports/nightly-packaging-2022-12-24-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770588650/jobs/6410520438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285090479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770583656/jobs/6410510913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285091289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770588041/jobs/6410519297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285086758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770594145/jobs/6410530014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770595396/jobs/6410531931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285100955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770592784/jobs/6410527767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285086053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770596080/jobs/6410532912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770586283/jobs/6410516144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10285625830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10286494064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10286375385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10285780876'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10285635460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10285604169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10286374780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10285641606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10285600333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10286456874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10285799502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10286335061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10285827416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10286463583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10286585563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10285951218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10286042401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10285869675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770589774/jobs/6410522478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285082201'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770592496/jobs/6410527197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285084255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3770589329/jobs/6410521694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3770590845/jobs/6410524359', 'https://github.com/ursacomputing/crossbow/actions/runs/3770590845/jobs/6410524317', 'https://github.com/ursacomputing/crossbow/actions/runs/3770590845/jobs/6410524281', 'https://github.com/ursacomputing/crossbow/actions/runs/3770590845/jobs/6410524240']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3770585929/jobs/6410515372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3770584816/jobs/6410814248', 'https://github.com/ursacomputing/crossbow/actions/runs/3770584816/jobs/6410513584', 'https://github.com/ursacomputing/crossbow/actions/runs/3770584816/jobs/6410513533', 'https://github.com/ursacomputing/crossbow/actions/runs/3770584816/jobs/6410513489', 'https://github.com/ursacomputing/crossbow/actions/runs/3770584816/jobs/6410513437']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-java-jars,github,{},java-jars/github.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770584142/jobs/6410512072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770593225/jobs/6410528443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-python-sdist,github,{},python-sdist/github.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410891129', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410685232', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410685194', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410684565', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410684525', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410684479', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410684410', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410600714', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410571166', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410571154', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410571132', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410571105', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410571086', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410571061', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410571027', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410570987', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410525092', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410525044', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410525002', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410524955', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410524908', 'https://github.com/ursacomputing/crossbow/actions/runs/3770588977/jobs/6410521095']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770593478/jobs/6410528883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285094055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770587604/jobs/6410518485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285097439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770586639/jobs/6410516763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285102970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770591712/jobs/6410525901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285095346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770583240/jobs/6410509987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770596435/jobs/6410533436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770590152/jobs/6410523043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770588257/jobs/6410519659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770590597/jobs/6410523808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770592273/jobs/6410526885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770594001/jobs/6410529810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770582981/jobs/6410509550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770584424/jobs/6410512652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3770595602/jobs/6410532214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285079326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770594462/jobs/6410530481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285081454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770588478/jobs/6410520074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285075680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770591377/jobs/6410525194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10285079872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770596595/jobs/6410533777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10285082576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770584489/jobs/6410512771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770587815/jobs/6410518890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770594784/jobs/6410531006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770595235/jobs/6410531661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5feabc57bd75a54b5fe003988a14394aa621df05
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3770595008/jobs/6410531308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5feabc57bd75a54b5fe003988a14394aa621df05
diff --git a/csv_reports/nightly-packaging-2022-12-25-0.csv b/csv_reports/nightly-packaging-2022-12-25-0.csv
deleted file mode 100644
index c8d1d4548d9..00000000000
--- a/csv_reports/nightly-packaging-2022-12-25-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775071253/jobs/6417527879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293036756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775072113/jobs/6417529521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293053309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775066057/jobs/6417518400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293047712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775070026/jobs/6417526031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775069766/jobs/6417525616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293057660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775071696/jobs/6417528743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293044709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775066962/jobs/6417520132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775072853/jobs/6417530908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10293063005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10293849265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10294766997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10294587508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10293603738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10293557578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10294254710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10293614814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10293729511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10294559391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10294327560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10293781974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10293819344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10293857263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10294605961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10294332892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10294001857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10293965000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775074142/jobs/6417533058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293050061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775066448/jobs/6417519179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293033491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3775076579/jobs/6417537011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3775072446/jobs/6417530231', 'https://github.com/ursacomputing/crossbow/actions/runs/3775072446/jobs/6417530200', 'https://github.com/ursacomputing/crossbow/actions/runs/3775072446/jobs/6417530163', 'https://github.com/ursacomputing/crossbow/actions/runs/3775072446/jobs/6417530125']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3775073051/jobs/6417531219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3775062797/jobs/6417762636', 'https://github.com/ursacomputing/crossbow/actions/runs/3775062797/jobs/6417511540', 'https://github.com/ursacomputing/crossbow/actions/runs/3775062797/jobs/6417511488', 'https://github.com/ursacomputing/crossbow/actions/runs/3775062797/jobs/6417511420', 'https://github.com/ursacomputing/crossbow/actions/runs/3775062797/jobs/6417511351']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-java-jars,github,{},java-jars/github.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775067497/jobs/6417521361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775070515/jobs/6417526811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-python-sdist,github,{},python-sdist/github.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417957528', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417835782', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417835734', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417835700', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417835664', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417835630', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417835587', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417635453', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417605637', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417605615', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417605601', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417605585', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417605562', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417605545', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417605525', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417605500', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417526417', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417526370', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417526326', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417526292', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417526240', 'https://github.com/ursacomputing/crossbow/actions/runs/3775067640/jobs/6417521679']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775074553/jobs/6417533778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293055012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775070351/jobs/6417526585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293038714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775065366/jobs/6417516838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293036246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775065888/jobs/6417517973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293059084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775076114/jobs/6417536166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775067184/jobs/6417520595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775070757/jobs/6417527157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775066733/jobs/6417519680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775073256/jobs/6417531590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775075258/jobs/6417534866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775067369/jobs/6417521103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775075053/jobs/6417534556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775075478/jobs/6417535256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3775064334/jobs/6417514564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293045941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775071488/jobs/6417528313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293034761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775074270/jobs/6417533266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293055480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3775068545/jobs/6417523301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293047366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3775073969/jobs/6417532800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10293046332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775063259/jobs/6417512705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775063012/jobs/6417512190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775067806/jobs/6417521984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775070182/jobs/6417526289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3775064046/jobs/6417514082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,474b1a5eee0c693e657a379e5d3826e57426ffaa
diff --git a/csv_reports/nightly-packaging-2022-12-26-0.csv b/csv_reports/nightly-packaging-2022-12-26-0.csv
deleted file mode 100644
index da7df7eca60..00000000000
--- a/csv_reports/nightly-packaging-2022-12-26-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780154703/jobs/6426007129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302764618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780162954/jobs/6426021847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302777775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780143332/jobs/6425983439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302763810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780156522/jobs/6426010584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780157328/jobs/6426012030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302770033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780155469/jobs/6426009417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302770582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780153934/jobs/6426005767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780159601/jobs/6426016039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10302817722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10305220006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10305580178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10304444502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10303822461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10305297696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10305324477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10304079340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10305198163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-osx-arm64-cpu-py3,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10304060628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10305725949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10304121998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10304268593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10304515770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10304542252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10304671755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10304526064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780143910/jobs/6425984482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302800203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780161473/jobs/6426019424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302766243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3780158569/jobs/6426014260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3780157702/jobs/6426012924', 'https://github.com/ursacomputing/crossbow/actions/runs/3780157702/jobs/6426012876', 'https://github.com/ursacomputing/crossbow/actions/runs/3780157702/jobs/6426012809', 'https://github.com/ursacomputing/crossbow/actions/runs/3780157702/jobs/6426012752']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3780160026/jobs/6426016890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3780146447/jobs/6426537718', 'https://github.com/ursacomputing/crossbow/actions/runs/3780146447/jobs/6425989846', 'https://github.com/ursacomputing/crossbow/actions/runs/3780146447/jobs/6425989756', 'https://github.com/ursacomputing/crossbow/actions/runs/3780146447/jobs/6425989675', 'https://github.com/ursacomputing/crossbow/actions/runs/3780146447/jobs/6425989588']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-java-jars,github,{},java-jars/github.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780150762/jobs/6425999232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3780152826/jobs/6426003596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-python-sdist,github,{},python-sdist/github.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6426684421', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6426307253', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6426307164', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6426307075', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6426307002', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6426306906', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6426306805', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6426066499', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6426066429', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6425988868', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6425988800', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6425988741', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6425988678', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6425988557', 'https://github.com/ursacomputing/crossbow/actions/runs/3780143026/jobs/6425982873']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780153139/jobs/6426004113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302782174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780149514/jobs/6425996642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302798139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780150942/jobs/6425999660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302757880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780152024/jobs/6426001971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302767016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780162456/jobs/6426021036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780145340/jobs/6425987378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780157046/jobs/6426011506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780160512/jobs/6426017898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780146306/jobs/6425989256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780155979/jobs/6426009590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780150090/jobs/6425997758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780159126/jobs/6426015171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780160874/jobs/6426018489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3780148694/jobs/6425994935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302776501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780143655/jobs/6425984064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302797185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780161946/jobs/6426020137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302778418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780162215/jobs/6426020606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302794273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3780154438/jobs/6426006635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10302785865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780151465/jobs/6426000816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780156366/jobs/6426010290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780148113/jobs/6425993684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780158281/jobs/6426013781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3780145023/jobs/6425986725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-26-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,9b22860030932ca752532b849c1f0ec9d06a62cd
diff --git a/csv_reports/nightly-packaging-2022-12-27-0.csv b/csv_reports/nightly-packaging-2022-12-27-0.csv
deleted file mode 100644
index 039420cc264..00000000000
--- a/csv_reports/nightly-packaging-2022-12-27-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786211441/jobs/6436903133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315801324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786215264/jobs/6436911013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315790090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786202615/jobs/6436883834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315802320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786221789/jobs/6436923562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786204486/jobs/6436887700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315802999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786202927/jobs/6436884419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315813797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786217194/jobs/6436914961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786211914/jobs/6436904113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10315822065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10318825822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10317981728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10317978331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10317364839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10316916910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10318715389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10316997419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10317170641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10318215421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10317363827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10317378452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10319164059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10319391278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10319034080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10317448416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10319826787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,9ac425941722c07b61331cea1ea0170a936de8be
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10317625588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,9ac425941722c07b61331cea1ea0170a936de8be
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786214609/jobs/6436909904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315812006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786201057/jobs/6436880759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315824227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3786202358/jobs/6436883281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,9ac425941722c07b61331cea1ea0170a936de8be
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3786208541/jobs/6436897137', 'https://github.com/ursacomputing/crossbow/actions/runs/3786208541/jobs/6436897045', 'https://github.com/ursacomputing/crossbow/actions/runs/3786208541/jobs/6436896930', 'https://github.com/ursacomputing/crossbow/actions/runs/3786208541/jobs/6436896833']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,9ac425941722c07b61331cea1ea0170a936de8be
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3786201784/jobs/6436882044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,9ac425941722c07b61331cea1ea0170a936de8be
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3786202064/jobs/6437491716', 'https://github.com/ursacomputing/crossbow/actions/runs/3786202064/jobs/6436882897', 'https://github.com/ursacomputing/crossbow/actions/runs/3786202064/jobs/6436882807', 'https://github.com/ursacomputing/crossbow/actions/runs/3786202064/jobs/6436882713', 'https://github.com/ursacomputing/crossbow/actions/runs/3786202064/jobs/6436882632']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-java-jars,github,{},java-jars/github.yml,9ac425941722c07b61331cea1ea0170a936de8be
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786208046/jobs/6436895953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,9ac425941722c07b61331cea1ea0170a936de8be
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786209744/jobs/6436899589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-python-sdist,github,{},python-sdist/github.yml,9ac425941722c07b61331cea1ea0170a936de8be
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437660029', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437258993', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437258917', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437258846', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437258768', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437258686', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437079358', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437008855', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437008786', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437008709', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437008627', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437008545', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437008466', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437008376', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6437008261', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6436925210', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6436925108', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6436925032', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6436924949', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6436924844', 'https://github.com/ursacomputing/crossbow/actions/runs/3786219455/jobs/6436919229']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,9ac425941722c07b61331cea1ea0170a936de8be
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786205735/jobs/6436890605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315783197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786217615/jobs/6436915925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315816918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786220215/jobs/6436920629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315815695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786207117/jobs/6436893923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315784071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786203441/jobs/6436885594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786206631/jobs/6436892753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786219971/jobs/6436920270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786200688/jobs/6436880185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786215529/jobs/6436911543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786209465/jobs/6436898920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786216367/jobs/6436913160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786220854/jobs/6436921946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786219138/jobs/6436918576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3786213171/jobs/6436906601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315809993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786218694/jobs/6436918618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315823069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786217934/jobs/6436916438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315782364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3786208343/jobs/6436896425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315787980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3786220609/jobs/6436921508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10315818993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786207402/jobs/6436894739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786221108/jobs/6436922447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786203171/jobs/6436885011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786211064/jobs/6436902369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,9ac425941722c07b61331cea1ea0170a936de8be
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3786206358/jobs/6436892106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-27-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,9ac425941722c07b61331cea1ea0170a936de8be
diff --git a/csv_reports/nightly-packaging-2022-12-28-0.csv b/csv_reports/nightly-packaging-2022-12-28-0.csv
deleted file mode 100644
index 502229c2919..00000000000
--- a/csv_reports/nightly-packaging-2022-12-28-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792751150/jobs/6449218417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331134864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792768834/jobs/6449255243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331136990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792761111/jobs/6449239220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331160840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792764472/jobs/6449246354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792748119/jobs/6449211660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331158013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792762956/jobs/6449242968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331183064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792755711/jobs/6449228046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792754878/jobs/6449226158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10331206236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10332616931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10334865353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10332968312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10333624963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10333507848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10332382961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10332417409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10332625796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10332642528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10332776286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10334412263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10334864403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10333098273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10333181190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10335723525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10333552860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10334758779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792760540/jobs/6449238114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331159472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792764159/jobs/6449245793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331139580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3792752346/jobs/6449221086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3792769620/jobs/6449256899', 'https://github.com/ursacomputing/crossbow/actions/runs/3792769620/jobs/6449256825', 'https://github.com/ursacomputing/crossbow/actions/runs/3792769620/jobs/6449256761', 'https://github.com/ursacomputing/crossbow/actions/runs/3792769620/jobs/6449256703']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3792763226/jobs/6449243571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3792748782/jobs/6449717819', 'https://github.com/ursacomputing/crossbow/actions/runs/3792748782/jobs/6449213503', 'https://github.com/ursacomputing/crossbow/actions/runs/3792748782/jobs/6449213391', 'https://github.com/ursacomputing/crossbow/actions/runs/3792748782/jobs/6449213282', 'https://github.com/ursacomputing/crossbow/actions/runs/3792748782/jobs/6449213160']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-java-jars,github,{},java-jars/github.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792750477/jobs/6449217184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792751795/jobs/6449219797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-python-sdist,github,{},python-sdist/github.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6450022299', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449622435', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449622343', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449622257', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449622190', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449622076', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449426695', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449353257', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449353196', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449353120', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449353046', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449352975', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449352905', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449352847', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449352760', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449247754', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449247638', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449247557', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449247465', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449247350', 'https://github.com/ursacomputing/crossbow/actions/runs/3792761794/jobs/6449240578']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792760817/jobs/6449238730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331146738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792764891/jobs/6449247179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331144880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3792760310/jobs/6449237617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331153063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792752756/jobs/6449221870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331155095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792753522/jobs/6449223596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792750028/jobs/6449216059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792755219/jobs/6449226906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792766319/jobs/6449250269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792760086/jobs/6449237115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792754191/jobs/6449224785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792765519/jobs/6449248395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792766158/jobs/6449249883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792751481/jobs/6449219141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3792763468/jobs/6449244132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331185694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792757989/jobs/6449232795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331160095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792755964/jobs/6449228594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-manylinux2014-cp37-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792747362/jobs/6449210227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331155637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3792747681/jobs/6449210832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10331180462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792762704/jobs/6449242431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792752034/jobs/6449220434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792749463/jobs/6449214641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792761430/jobs/6449239800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,a0d16306229fc08f9dc64361f9459806e02b5932
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3792765133/jobs/6449247575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-28-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,a0d16306229fc08f9dc64361f9459806e02b5932
diff --git a/csv_reports/nightly-packaging-2022-12-29-0.csv b/csv_reports/nightly-packaging-2022-12-29-0.csv
deleted file mode 100644
index 8baefd03525..00000000000
--- a/csv_reports/nightly-packaging-2022-12-29-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799341937/jobs/6461775305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346663030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799324298/jobs/6461738637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346654600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799341419/jobs/6461774366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346661267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799345031/jobs/6461781493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799327558/jobs/6461744713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346691265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799327231/jobs/6461744120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346688611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799346042/jobs/6461783554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799347885/jobs/6461786822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10346696364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10348511777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10348169760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10348743368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-linux-ppc64le-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10349536280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10349144582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10347894491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10348045051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10347716226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10348050928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10349591676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10348379510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10349598757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10348746907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10350473256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10350009182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10348825300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,463cdccdf7a1914073b29f61915018b2045bb429
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10350064716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,463cdccdf7a1914073b29f61915018b2045bb429
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799346674/jobs/6461784651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346648844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799343749/jobs/6461779250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346681619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3799341021/jobs/6461773501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,463cdccdf7a1914073b29f61915018b2045bb429
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3799336658/jobs/6461765126', 'https://github.com/ursacomputing/crossbow/actions/runs/3799336658/jobs/6461765046', 'https://github.com/ursacomputing/crossbow/actions/runs/3799336658/jobs/6461764972', 'https://github.com/ursacomputing/crossbow/actions/runs/3799336658/jobs/6461764898']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,463cdccdf7a1914073b29f61915018b2045bb429
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3799325237/jobs/6461740362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,463cdccdf7a1914073b29f61915018b2045bb429
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3799345633/jobs/6462415889', 'https://github.com/ursacomputing/crossbow/actions/runs/3799345633/jobs/6461782885', 'https://github.com/ursacomputing/crossbow/actions/runs/3799345633/jobs/6461782811', 'https://github.com/ursacomputing/crossbow/actions/runs/3799345633/jobs/6461782749', 'https://github.com/ursacomputing/crossbow/actions/runs/3799345633/jobs/6461782686']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-java-jars,github,{},java-jars/github.yml,463cdccdf7a1914073b29f61915018b2045bb429
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799331455/jobs/6461753933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,463cdccdf7a1914073b29f61915018b2045bb429
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799343275/jobs/6461778255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-python-sdist,github,{},python-sdist/github.yml,463cdccdf7a1914073b29f61915018b2045bb429
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6462520767', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6462070503', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6462070407', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6462070324', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6462070242', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6462070137', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461926128', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461873023', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461872977', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461872929', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461872878', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461872825', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461872767', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461872707', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461872623', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461794121', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461794042', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461793946', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461793870', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461793749', 'https://github.com/ursacomputing/crossbow/actions/runs/3799348531/jobs/6461788011']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,463cdccdf7a1914073b29f61915018b2045bb429
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799342841/jobs/6461777318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346643170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799329447/jobs/6461749371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346686136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799340233/jobs/6461771980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346664397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799335332/jobs/6461762340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346636532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799332681/jobs/6461756801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799343495/jobs/6461778731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799348209/jobs/6461787382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799332403/jobs/6461756285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799339801/jobs/6461771090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799345217/jobs/6461781832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799326888/jobs/6461743583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799346983/jobs/6461785245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799338804/jobs/6461769229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799328233/jobs/6461746124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346633820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799328636/jobs/6461747075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346659454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799334531/jobs/6461760586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346637480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799329925/jobs/6461750532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346647375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3799336074/jobs/6461763802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10346673426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799326629/jobs/6461743113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799344503/jobs/6461780509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799339226/jobs/6461770058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799332235/jobs/6461755753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,463cdccdf7a1914073b29f61915018b2045bb429
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3799325479/jobs/6461740898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-29-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,463cdccdf7a1914073b29f61915018b2045bb429
diff --git a/csv_reports/nightly-packaging-2022-12-30-0.csv b/csv_reports/nightly-packaging-2022-12-30-0.csv
deleted file mode 100644
index 8258d3667c0..00000000000
--- a/csv_reports/nightly-packaging-2022-12-30-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805754655/jobs/6473956491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361648209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805769056/jobs/6473986538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361649430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805771743/jobs/6473991508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361643435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805770989/jobs/6473990110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805763248/jobs/6473975463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361658395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805760492/jobs/6473969427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361638314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805757764/jobs/6473963422'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conan-minimum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3805765635/jobs/6473980131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10363066322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-linux-aarch64-cpu-py3,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10364418724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10363274163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10362877675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-linux-x64-cpu-py3,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10364214507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10362820761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10362953036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10362896578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10363037182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10362979945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10364410620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10363162950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10363207533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-win-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10364957075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10363608600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10364378230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3805770707/jobs/6473989656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361653101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805764373/jobs/6473977616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361650725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3805771500/jobs/6473991054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3805760802/jobs/6473970325', 'https://github.com/ursacomputing/crossbow/actions/runs/3805760802/jobs/6473970234', 'https://github.com/ursacomputing/crossbow/actions/runs/3805760802/jobs/6473970149', 'https://github.com/ursacomputing/crossbow/actions/runs/3805760802/jobs/6473970039']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3805758035/jobs/6473964010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3805771182/jobs/6474487091', 'https://github.com/ursacomputing/crossbow/actions/runs/3805771182/jobs/6473990663', 'https://github.com/ursacomputing/crossbow/actions/runs/3805771182/jobs/6473990602', 'https://github.com/ursacomputing/crossbow/actions/runs/3805771182/jobs/6473990546', 'https://github.com/ursacomputing/crossbow/actions/runs/3805771182/jobs/6473990500']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-java-jars,github,{},java-jars/github.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805759916/jobs/6473968257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805765928/jobs/6473980559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-python-sdist,github,{},python-sdist/github.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474611939', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474214036', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474213955', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474213883', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474213794', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474213700', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474099752', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474047322', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474047280', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474047235', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474047187', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474047153', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474047103', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474047054', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6474046993', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6473974826', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6473974753', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6473974685', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6473974623', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6473974552', 'https://github.com/ursacomputing/crossbow/actions/runs/3805759727/jobs/6473967915']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805762048/jobs/6473972930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361632744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805754167/jobs/6473955253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361653050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805763886/jobs/6473976667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361639479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805766538/jobs/6473981572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361639613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805769355/jobs/6473987024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805753530/jobs/6473953576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805768294/jobs/6473985164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805767129/jobs/6473982816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805761579/jobs/6473971901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805756342/jobs/6473960360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805754404/jobs/6473955861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805768081/jobs/6473984755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805755517/jobs/6473958459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3805761820/jobs/6473972442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361652572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805756989/jobs/6473961759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361637175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805761372/jobs/6473971408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361634656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805758293/jobs/6473964663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361647836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3805760231/jobs/6473968861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10361624728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805770041/jobs/6473988346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805768510/jobs/6473985632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805767639/jobs/6473983899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805762734/jobs/6473974469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3805766805/jobs/6473982115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-30-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,83511b1c274a43a43fc7cd4921ece83961ef61e6
diff --git a/csv_reports/nightly-packaging-2022-12-31-0.csv b/csv_reports/nightly-packaging-2022-12-31-0.csv
deleted file mode 100644
index ff4b6829477..00000000000
--- a/csv_reports/nightly-packaging-2022-12-31-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811362834/jobs/6483994962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373668291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811375728/jobs/6484018710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373665531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811375262/jobs/6484017828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373659756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811363770/jobs/6483996871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811370609/jobs/6484009972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373673147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811373505/jobs/6484014827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373656322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811362143/jobs/6483993112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811364891/jobs/6483999215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10374371767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10375313097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10374352865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10374562743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10374844424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10374308895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10374350929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10374290937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10374737509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10374273306'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10374438387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10374355401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10375191795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10374978400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10375072187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10375640790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10374620792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,985789165eb30cc575d67aa52469f802e5132e64
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10374658619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,985789165eb30cc575d67aa52469f802e5132e64
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811375861/jobs/6484018958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373670438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811367665/jobs/6484004711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373675720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811364521/jobs/6483998381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,985789165eb30cc575d67aa52469f802e5132e64
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3811367124/jobs/6484003732', 'https://github.com/ursacomputing/crossbow/actions/runs/3811367124/jobs/6484003682', 'https://github.com/ursacomputing/crossbow/actions/runs/3811367124/jobs/6484003646', 'https://github.com/ursacomputing/crossbow/actions/runs/3811367124/jobs/6484003604']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,985789165eb30cc575d67aa52469f802e5132e64
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811369323/jobs/6484007863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,985789165eb30cc575d67aa52469f802e5132e64
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3811364173/jobs/6484243626', 'https://github.com/ursacomputing/crossbow/actions/runs/3811364173/jobs/6483997807', 'https://github.com/ursacomputing/crossbow/actions/runs/3811364173/jobs/6483997764', 'https://github.com/ursacomputing/crossbow/actions/runs/3811364173/jobs/6483997710', 'https://github.com/ursacomputing/crossbow/actions/runs/3811364173/jobs/6483997649']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-java-jars,github,{},java-jars/github.yml,985789165eb30cc575d67aa52469f802e5132e64
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811366646/jobs/6484002550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,985789165eb30cc575d67aa52469f802e5132e64
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811369954/jobs/6484008908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-python-sdist,github,{},python-sdist/github.yml,985789165eb30cc575d67aa52469f802e5132e64
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484413964', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484309316', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484309258', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484309224', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484309173', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484309098', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484116125', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484091423', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484091399', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484091379', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484091355', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484091336', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484091318', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484091294', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484091271', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484015328', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484015292', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484015258', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484015220', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484015177', 'https://github.com/ursacomputing/crossbow/actions/runs/3811371390/jobs/6484011204']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,985789165eb30cc575d67aa52469f802e5132e64
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811374824/jobs/6484017192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373671123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811363357/jobs/6483996083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373654551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811366946/jobs/6484003249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373677814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811369737/jobs/6484008546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373669280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811371015/jobs/6484010619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-macos-big-sur-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811373109/jobs/6484014083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811362311/jobs/6483993602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811367499/jobs/6484004371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811366287/jobs/6484001827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811371587/jobs/6484011549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811371964/jobs/6484012115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-macos-mojave-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811364694/jobs/6483998782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811373354/jobs/6484014512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811371794/jobs/6484011839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373661613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811372162/jobs/6484012456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373659091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811368224/jobs/6484005737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373653409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3811367850/jobs/6484005081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373666142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811375584/jobs/6484018434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10373666853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811373755/jobs/6484015324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811372922/jobs/6484013801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811367288/jobs/6484003954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811373960/jobs/6484015673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,985789165eb30cc575d67aa52469f802e5132e64
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3811368696/jobs/6484006577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2022-12-31-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,985789165eb30cc575d67aa52469f802e5132e64
diff --git a/csv_reports/nightly-packaging-2023-01-01-0.csv b/csv_reports/nightly-packaging-2023-01-01-0.csv
deleted file mode 100644
index 3bfd3d0817a..00000000000
--- a/csv_reports/nightly-packaging-2023-01-01-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816026828/jobs/6491399729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382030021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816021542/jobs/6491388541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382032853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816029860/jobs/6491405016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382017291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816025844/jobs/6491397540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816025406/jobs/6491396603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382035377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816024947/jobs/6491395736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382033149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816027488/jobs/6491400933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816021848/jobs/6491389129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10382437470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10383122859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10383024080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10383213656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10383660985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10382893085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10383591521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10382657906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10383695205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10383892654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10382988055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10383083043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10383139417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10383826202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10384137450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10382929454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10384014163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10383578185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816028675/jobs/6491403208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382015807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816031139/jobs/6491407413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382022940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816027709/jobs/6491401316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3816026459/jobs/6491399218', 'https://github.com/ursacomputing/crossbow/actions/runs/3816026459/jobs/6491399157', 'https://github.com/ursacomputing/crossbow/actions/runs/3816026459/jobs/6491399118', 'https://github.com/ursacomputing/crossbow/actions/runs/3816026459/jobs/6491399068']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816033222/jobs/6491410832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3816033064/jobs/6491698645', 'https://github.com/ursacomputing/crossbow/actions/runs/3816033064/jobs/6491410675', 'https://github.com/ursacomputing/crossbow/actions/runs/3816033064/jobs/6491410634', 'https://github.com/ursacomputing/crossbow/actions/runs/3816033064/jobs/6491410587', 'https://github.com/ursacomputing/crossbow/actions/runs/3816033064/jobs/6491410545']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-java-jars,github,{},java-jars/github.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816028797/jobs/6491403467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816024402/jobs/6491394826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-python-sdist,github,{},python-sdist/github.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491841366', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491634956', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491634902', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491634849', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491634809', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491634761', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491462730', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491462689', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491411872', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491411828', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491411786', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491411748', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491411703', 'https://github.com/ursacomputing/crossbow/actions/runs/3816031562/jobs/6491408109']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816028921/jobs/6491403728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382010746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816027949/jobs/6491401697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382011026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816032524/jobs/6491409543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382037462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816030100/jobs/6491405451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382027818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816026287/jobs/6491398726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-macos-big-sur-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816034649/jobs/6491413005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816029087/jobs/6491403969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816021162/jobs/6491387799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816025189/jobs/6491396196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816024629/jobs/6491395188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-macos-mojave-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816023918/jobs/6491393915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816022342/jobs/6491390303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816028543/jobs/6491402956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816030695/jobs/6491406535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10382038490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816022234/jobs/6491390050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382011423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816030344/jobs/6491405900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382036099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816020371/jobs/6491386199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382038013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3816034373/jobs/6491412667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10382033852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816021957/jobs/6491389375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816031235/jobs/6491407606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816023322/jobs/6491392304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816024044/jobs/6491394146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3816027251/jobs/6491400514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5a57e6dd1e4b1d89ecabe86b45d063619a0f2f54
diff --git a/csv_reports/nightly-packaging-2023-01-03-0.csv b/csv_reports/nightly-packaging-2023-01-03-0.csv
deleted file mode 100644
index cc58a3f63ab..00000000000
--- a/csv_reports/nightly-packaging-2023-01-03-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827992881/jobs/6513092025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407911242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827983686/jobs/6513070968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407884176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827981948/jobs/6513067362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407892987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827989149/jobs/6513083897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827985536/jobs/6513074852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407933597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827991956/jobs/6513089976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407938102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827998930/jobs/6513105689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827987827/jobs/6513080553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10407938261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10409889608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10412805037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10412479009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10410040579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10409430545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10410014942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10411828619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10409429001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10412253290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10411744672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10412334461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10410323681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10410019026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10410531086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10409975824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10411669899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,b1a48c78a318402daab1d0f974825373ef41b293
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10411771879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b1a48c78a318402daab1d0f974825373ef41b293
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3827985167/jobs/6513074038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407940072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827989825/jobs/6513085317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407925034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3827994958/jobs/6513096855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b1a48c78a318402daab1d0f974825373ef41b293
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3827980013/jobs/6513063455', 'https://github.com/ursacomputing/crossbow/actions/runs/3827980013/jobs/6513063333', 'https://github.com/ursacomputing/crossbow/actions/runs/3827980013/jobs/6513063218', 'https://github.com/ursacomputing/crossbow/actions/runs/3827980013/jobs/6513063117']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b1a48c78a318402daab1d0f974825373ef41b293
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3827994095/jobs/6513094832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b1a48c78a318402daab1d0f974825373ef41b293
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3827999640/jobs/6513884532', 'https://github.com/ursacomputing/crossbow/actions/runs/3827999640/jobs/6513107281', 'https://github.com/ursacomputing/crossbow/actions/runs/3827999640/jobs/6513107165', 'https://github.com/ursacomputing/crossbow/actions/runs/3827999640/jobs/6513107069', 'https://github.com/ursacomputing/crossbow/actions/runs/3827999640/jobs/6513106943']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-java-jars,github,{},java-jars/github.yml,b1a48c78a318402daab1d0f974825373ef41b293
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827987124/jobs/6513078965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b1a48c78a318402daab1d0f974825373ef41b293
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827985910/jobs/6513075766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-python-sdist,github,{},python-sdist/github.yml,b1a48c78a318402daab1d0f974825373ef41b293
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513880659', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513522255', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513522143', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513522049', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513521947', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513521837', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513302248', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513215781', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513215673', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513215594', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513215483', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513215380', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513215294', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513215215', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513215085', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513105040', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513104947', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513104860', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513104794', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513104686', 'https://github.com/ursacomputing/crossbow/actions/runs/3827995248/jobs/6513097544']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b1a48c78a318402daab1d0f974825373ef41b293
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3828001984/jobs/6513111701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407920106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827986538/jobs/6513077381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407880461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827986770/jobs/6513078120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407940708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827997531/jobs/6513102451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407944968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-macos-big-sur-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3827996914/jobs/6513100983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-macos-big-sur-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3828001031/jobs/6513109770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3827978828/jobs/6513060946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-macos-big-sur-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3828000346/jobs/6513108309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827984537/jobs/6513072585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-macos-mojave-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3827998132/jobs/6513103821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827979622/jobs/6513062343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827997814/jobs/6513103075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3827987503/jobs/6513079811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3827982420/jobs/6513068434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407932321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827984842/jobs/6513073286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407943765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827996255/jobs/6513099685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407929440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827996075/jobs/6513099330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407909940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3827988478/jobs/6513082293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10407898628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827993579/jobs/6513093479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827989497/jobs/6513084586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3828002597/jobs/6513112865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827980360/jobs/6513063940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b1a48c78a318402daab1d0f974825373ef41b293
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3827994617/jobs/6513096115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-03-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b1a48c78a318402daab1d0f974825373ef41b293
diff --git a/csv_reports/nightly-packaging-2023-01-04-0.csv b/csv_reports/nightly-packaging-2023-01-04-0.csv
deleted file mode 100644
index 47b400979e4..00000000000
--- a/csv_reports/nightly-packaging-2023-01-04-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836406658/jobs/6530540639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430500762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836408679/jobs/6530545741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430548989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836402199/jobs/6530530889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430520709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836414931/jobs/6530560275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836424230/jobs/6530580737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430533265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836414088/jobs/6530558432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430497239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836411056/jobs/6530551290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836405419/jobs/6530537908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10432278187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10433792078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10435778615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10436174963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10432917286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10432489530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10434964267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10434214626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10432213888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10432804308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10432898542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10433114278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10433127491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10435316299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10435866113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10433514073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10433561869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10435748434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3836411857/jobs/6530553276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430514028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836414223/jobs/6530558668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430540848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836409920/jobs/6530548391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3836419898/jobs/6530571460', 'https://github.com/ursacomputing/crossbow/actions/runs/3836419898/jobs/6530571304', 'https://github.com/ursacomputing/crossbow/actions/runs/3836419898/jobs/6530571176', 'https://github.com/ursacomputing/crossbow/actions/runs/3836419898/jobs/6530571052']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836418893/jobs/6530568828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3836412579/jobs/6531390155', 'https://github.com/ursacomputing/crossbow/actions/runs/3836412579/jobs/6530555401', 'https://github.com/ursacomputing/crossbow/actions/runs/3836412579/jobs/6530555247', 'https://github.com/ursacomputing/crossbow/actions/runs/3836412579/jobs/6530555054', 'https://github.com/ursacomputing/crossbow/actions/runs/3836412579/jobs/6530554896']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-java-jars,github,{},java-jars/github.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836421438/jobs/6530574821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836403491/jobs/6530533623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-python-sdist,github,{},python-sdist/github.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6531449799', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530957922', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530957807', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530957630', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530957480', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530957096', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530746035', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530669763', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530669652', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530669571', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530669466', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530669147', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530669043', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530668927', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530668797', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530545965', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530545818', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530545629', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530545483', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530545282', 'https://github.com/ursacomputing/crossbow/actions/runs/3836403012/jobs/6530532786']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836424497/jobs/6530581421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430547144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836419222/jobs/6530569576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430555239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836408998/jobs/6530546565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430552288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836401352/jobs/6530529326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430556676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836422386/jobs/6530576810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836423874/jobs/6530579936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836402528/jobs/6530531653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836410708/jobs/6530550378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836413820/jobs/6530557778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836398968/jobs/6530524378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836400303/jobs/6530527212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836422129/jobs/6530576187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836425737/jobs/6530583997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3836424828/jobs/6530582195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430510451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836407969/jobs/6530543684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430494644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836417830/jobs/6530566524'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430508522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3836420243/jobs/6530571834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430530374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836416322/jobs/6530563271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10430518293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836406229/jobs/6530539726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836425174/jobs/6530582800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836410302/jobs/6530549292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836414515/jobs/6530559415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,ec9a8a322b9486584e51c174b63774fd496783b0
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3836407162/jobs/6530541766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-04-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,ec9a8a322b9486584e51c174b63774fd496783b0
diff --git a/csv_reports/nightly-packaging-2023-01-05-0.csv b/csv_reports/nightly-packaging-2023-01-05-0.csv
deleted file mode 100644
index 5a228d0b1a0..00000000000
--- a/csv_reports/nightly-packaging-2023-01-05-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845118685/jobs/6548887909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454318134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845128572/jobs/6548911488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454371066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845127450/jobs/6548908845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454386036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845118224/jobs/6548887133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845120369/jobs/6548892072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454323182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845125206/jobs/6548903739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454321158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845112179/jobs/6548873930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845121343/jobs/6548894535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10454409379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10460236323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10459222640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10456767753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10456355994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10456674203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10459439379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10456857113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10457352906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-osx-arm64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10454493418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10456764168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10456999362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10456974799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10457430153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10459434922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10457373281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10459269601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-conda-win-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10457129675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845130646/jobs/6548916533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454357282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845123051/jobs/6548898675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454359845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845109498/jobs/6548868776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3845113782/jobs/6548877813', 'https://github.com/ursacomputing/crossbow/actions/runs/3845113782/jobs/6548877645', 'https://github.com/ursacomputing/crossbow/actions/runs/3845113782/jobs/6548877507', 'https://github.com/ursacomputing/crossbow/actions/runs/3845113782/jobs/6548877360']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845129928/jobs/6548915111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3845131453/jobs/6549800649', 'https://github.com/ursacomputing/crossbow/actions/runs/3845131453/jobs/6548918500', 'https://github.com/ursacomputing/crossbow/actions/runs/3845131453/jobs/6548918372', 'https://github.com/ursacomputing/crossbow/actions/runs/3845131453/jobs/6548918237', 'https://github.com/ursacomputing/crossbow/actions/runs/3845131453/jobs/6548918093']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-java-jars,github,{},java-jars/github.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845121675/jobs/6548895477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845104728/jobs/6548858191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-python-sdist,github,{},python-sdist/github.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549801949', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549402249', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549402138', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549402048', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549401932', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549401758', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549165154', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549054918', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549054824', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549054713', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549054592', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549054458', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549054317', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549054171', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6549053986', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6548903086', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6548902936', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6548902782', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6548902674', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6548902504', 'https://github.com/ursacomputing/crossbow/actions/runs/3845120784/jobs/6548893094']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845115484/jobs/6548880901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454345326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845106005/jobs/6548860740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454347676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845112851/jobs/6548875158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454344400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845131889/jobs/6548919067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454366347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845115096/jobs/6548879931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845127829/jobs/6548909700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845110652/jobs/6548870802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845110997/jobs/6548871510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845130253/jobs/6548915710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845126633/jobs/6548906985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845112477/jobs/6548874785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845106404/jobs/6548861614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845119506/jobs/6548889837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845120050/jobs/6548891191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454339130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845109022/jobs/6548867303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454337849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845113454/jobs/6548876388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454331576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845128214/jobs/6548910599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454372431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3845123392/jobs/6548899549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10454388851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845105146/jobs/6548858895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3845106970/jobs/6548862953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845122404/jobs/6548897339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845111309/jobs/6548872379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3845105778/jobs/6548860288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-05-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,773b5d815c8dd68a4ff1e3b90f7838ab770a9d27
diff --git a/csv_reports/nightly-packaging-2023-01-06-0.csv b/csv_reports/nightly-packaging-2023-01-06-0.csv
deleted file mode 100644
index 6799f2cd28d..00000000000
--- a/csv_reports/nightly-packaging-2023-01-06-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853837022/jobs/6567207733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478276916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853839015/jobs/6567211965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478239933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853830692/jobs/6567193017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478280904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853837853/jobs/6567209455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853836110/jobs/6567205624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478298014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853820026/jobs/6567169915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478239020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853827022/jobs/6567184202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853827862/jobs/6567186052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10480186898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10482037081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10483256852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10480336355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10480414796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10481979324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10479932473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10480135861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10480190213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10482016150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10482259926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10481902553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10480389045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10480684210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10482870030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10480690878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10480752140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10480742646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853834266/jobs/6567201501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478273618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853829933/jobs/6567191308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478252464'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853824208/jobs/6567178139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3853830571/jobs/6567193095', 'https://github.com/ursacomputing/crossbow/actions/runs/3853830571/jobs/6567192993', 'https://github.com/ursacomputing/crossbow/actions/runs/3853830571/jobs/6567192867', 'https://github.com/ursacomputing/crossbow/actions/runs/3853830571/jobs/6567192718']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853828918/jobs/6567188490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3853829340/jobs/6567768423', 'https://github.com/ursacomputing/crossbow/actions/runs/3853829340/jobs/6567190140', 'https://github.com/ursacomputing/crossbow/actions/runs/3853829340/jobs/6567189994', 'https://github.com/ursacomputing/crossbow/actions/runs/3853829340/jobs/6567189881', 'https://github.com/ursacomputing/crossbow/actions/runs/3853829340/jobs/6567189742']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-java-jars,github,{},java-jars/github.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853837395/jobs/6567208524'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853824521/jobs/6567178733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-python-sdist,github,{},python-sdist/github.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6568009515', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567696742', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567696644', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567696545', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567696431', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567696282', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567399013', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567322400', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567322272', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567322175', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567322056', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567321967', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567321849', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567321724', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567321601', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567205438', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567205293', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567205175', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567205068', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567204919', 'https://github.com/ursacomputing/crossbow/actions/runs/3853832493/jobs/6567197076']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853822735/jobs/6567175642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478292060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853824954/jobs/6567179574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478277732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853834109/jobs/6567201312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478238082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853830383/jobs/6567192313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478283218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853838373/jobs/6567210595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853842887/jobs/6567220824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853828169/jobs/6567186757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853840351/jobs/6567214911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853840794/jobs/6567216132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853823444/jobs/6567176882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853842042/jobs/6567218978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853839795/jobs/6567213834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853822424/jobs/6567175080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853822069/jobs/6567174362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10478271349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853831194/jobs/6567194081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478257618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853820449/jobs/6567170679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10478281667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853834736/jobs/6567202606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478272679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853832091/jobs/6567196160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10478278320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853842220/jobs/6567219312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853837979/jobs/6567209732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853823150/jobs/6567176387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853829081/jobs/6567189033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3853823779/jobs/6567177553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-06-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d2481a610f7653e1b965366461dd6be0c22c1fda
diff --git a/csv_reports/nightly-packaging-2023-01-07-0.csv b/csv_reports/nightly-packaging-2023-01-07-0.csv
deleted file mode 100644
index d556f86b861..00000000000
--- a/csv_reports/nightly-packaging-2023-01-07-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861285156/jobs/6582170357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497627940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861274569/jobs/6582149489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497626518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861276619/jobs/6582153984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10497650932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861288674/jobs/6582176290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861284119/jobs/6582168594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497650600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861277656/jobs/6582156528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497625902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861275098/jobs/6582150562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861280134/jobs/6582161577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10497669531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10498666618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10498608828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10498459394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10498448161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10498432773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10498302502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10499267001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10498321692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10499180130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10499123096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10498412383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10499288142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10499546396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10498533803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10499443888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-win-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10498543489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10499168650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861288094/jobs/6582175445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497635096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861288817/jobs/6582176519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497639910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861275300/jobs/6582151001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3861282342/jobs/6582165767', 'https://github.com/ursacomputing/crossbow/actions/runs/3861282342/jobs/6582165722', 'https://github.com/ursacomputing/crossbow/actions/runs/3861282342/jobs/6582165672', 'https://github.com/ursacomputing/crossbow/actions/runs/3861282342/jobs/6582165618']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861278466/jobs/6582158228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3861286393/jobs/6582425972', 'https://github.com/ursacomputing/crossbow/actions/runs/3861286393/jobs/6582172644', 'https://github.com/ursacomputing/crossbow/actions/runs/3861286393/jobs/6582172593', 'https://github.com/ursacomputing/crossbow/actions/runs/3861286393/jobs/6582172548', 'https://github.com/ursacomputing/crossbow/actions/runs/3861286393/jobs/6582172478']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-java-jars,github,{},java-jars/github.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861283624/jobs/6582167740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861285609/jobs/6582171092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-python-sdist,github,{},python-sdist/github.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582506768', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582326890', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582326842', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582326772', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582326727', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582326643', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582262180', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582224279', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582224236', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582224206', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582224170', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582224131', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582224104', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582224078', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582224030', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582168257', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582168204', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582168159', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582168107', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582168048', 'https://github.com/ursacomputing/crossbow/actions/runs/3861281287/jobs/6582163902']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861276870/jobs/6582154489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497642342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861284839/jobs/6582169856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497636060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861280674/jobs/6582162688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497630327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861283308/jobs/6582167285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497654393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861286939/jobs/6582173446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861286612/jobs/6582172801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861285770/jobs/6582171371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861282574/jobs/6582166026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861287563/jobs/6582174489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861286772/jobs/6582173179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861282031/jobs/6582165052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861274889/jobs/6582150124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-macos-mojave-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3861285408/jobs/6582170799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861274716/jobs/6582149795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10497645069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861288295/jobs/6582175754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497633688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861277077/jobs/6582154987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497631279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3861278135/jobs/6582157452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10497626944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861281025/jobs/6582163449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10497627624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861285945/jobs/6582171699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861279594/jobs/6582160405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861287430/jobs/6582174275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861281832/jobs/6582164693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,21d6374d2579c07d75832c5baf06479898e82fd5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3861279937/jobs/6582161129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-07-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,21d6374d2579c07d75832c5baf06479898e82fd5
diff --git a/csv_reports/nightly-packaging-2023-01-08-0.csv b/csv_reports/nightly-packaging-2023-01-08-0.csv
deleted file mode 100644
index 1ccd8a6eab6..00000000000
--- a/csv_reports/nightly-packaging-2023-01-08-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866235512/jobs/6590225698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507202370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866239268/jobs/6590233908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507204988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866237266/jobs/6590229982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507222643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866241659/jobs/6590238548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866235238/jobs/6590225060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507225623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866243783/jobs/6590242314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507202699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866238659/jobs/6590232667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866240993/jobs/6590237431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10507228567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10508834625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10508340137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10508947161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10508025249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10509076407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10508959528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10508087001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10507824034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10508826539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10508054853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10508890386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10508078752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10508163312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10508214185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10508044334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10508379256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-conda-win-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10509184869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866245040/jobs/6590244542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507224469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866248805/jobs/6590251351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507206764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866246745/jobs/6590247819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3866242314/jobs/6590239862', 'https://github.com/ursacomputing/crossbow/actions/runs/3866242314/jobs/6590239818', 'https://github.com/ursacomputing/crossbow/actions/runs/3866242314/jobs/6590239779', 'https://github.com/ursacomputing/crossbow/actions/runs/3866242314/jobs/6590239724']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866237589/jobs/6590230611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3866248166/jobs/6590506449', 'https://github.com/ursacomputing/crossbow/actions/runs/3866248166/jobs/6590250510', 'https://github.com/ursacomputing/crossbow/actions/runs/3866248166/jobs/6590250467', 'https://github.com/ursacomputing/crossbow/actions/runs/3866248166/jobs/6590250408', 'https://github.com/ursacomputing/crossbow/actions/runs/3866248166/jobs/6590250345']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-java-jars,github,{},java-jars/github.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866237069/jobs/6590229469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866248623/jobs/6590251024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-python-sdist,github,{},python-sdist/github.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590601430', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590400802', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590400710', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590400603', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590400523', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590400419', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590327978', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590296841', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590296808', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590296767', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590296736', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590296701', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590296676', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590296645', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590296610', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590228749', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590228647', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590228593', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590228491', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590228410', 'https://github.com/ursacomputing/crossbow/actions/runs/3866234059/jobs/6590222479']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866246559/jobs/6590247496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507210916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866244515/jobs/6590243609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507206415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866241269/jobs/6590237884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507201513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866243975/jobs/6590242628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507200166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866244163/jobs/6590242959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866236498/jobs/6590228107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866241447/jobs/6590238229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866235784/jobs/6590226297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866239418/jobs/6590234232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866240097/jobs/6590235681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866245478/jobs/6590245341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866246211/jobs/6590246858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866236689/jobs/6590228568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3866247724/jobs/6590249622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10507219946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3866246997/jobs/6590248361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507207120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866247191/jobs/6590248659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10507213181'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3866245884/jobs/6590246112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507223649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866240322/jobs/6590236108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10507213580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866236275/jobs/6590227657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866243540/jobs/6590241898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866234252/jobs/6590222765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866244292/jobs/6590243209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3866234991/jobs/6590224554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-08-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,c32b45e3b7b8dd2fdec8fa2bdf65b36eff7016b9
diff --git a/csv_reports/nightly-packaging-2023-01-09-0.csv b/csv_reports/nightly-packaging-2023-01-09-0.csv
deleted file mode 100644
index d57404206eb..00000000000
--- a/csv_reports/nightly-packaging-2023-01-09-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872061635/jobs/6600473905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519488685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872069160/jobs/6600492160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519471332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872059303/jobs/6600468425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519472449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872053233/jobs/6600454634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872062002/jobs/6600474659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519409839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872066332/jobs/6600484908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519444748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872054775/jobs/6600458155'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872057029/jobs/6600463302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10519505948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10521816796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10525377052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10525050788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10521809222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10521412156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10521574607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10524670875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10521339014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10521869340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10522075156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10524804728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10522311260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10524921696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10524880626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-win-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10522376678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10525226396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10521764958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872067552/jobs/6600487918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519428263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872058298/jobs/6600466032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519416445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872070504/jobs/6600495523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3872072535/jobs/6600500868', 'https://github.com/ursacomputing/crossbow/actions/runs/3872072535/jobs/6600500793', 'https://github.com/ursacomputing/crossbow/actions/runs/3872072535/jobs/6600500663', 'https://github.com/ursacomputing/crossbow/actions/runs/3872072535/jobs/6600500573']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872052469/jobs/6600452940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3872058672/jobs/6601399784', 'https://github.com/ursacomputing/crossbow/actions/runs/3872058672/jobs/6600467452', 'https://github.com/ursacomputing/crossbow/actions/runs/3872058672/jobs/6600467300', 'https://github.com/ursacomputing/crossbow/actions/runs/3872058672/jobs/6600467144', 'https://github.com/ursacomputing/crossbow/actions/runs/3872058672/jobs/6600466939']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-java-jars,github,{},java-jars/github.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872064239/jobs/6600479929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872063734/jobs/6600478302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-python-sdist,github,{},python-sdist/github.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6601469653', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600945392', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600945246', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600945085', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600944943', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600944775', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600708541', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600628097', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600627969', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600627838', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600627726', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600627601', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600627499', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600627336', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600627155', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600493487', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600493333', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600493224', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600493075', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600492910', 'https://github.com/ursacomputing/crossbow/actions/runs/3872065292/jobs/6600482436']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872058993/jobs/6600467757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519473736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872062494/jobs/6600475457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519457188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872076599/jobs/6600509834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519417749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872057413/jobs/6600464020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519438676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872060463/jobs/6600471468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872070938/jobs/6600496462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872077230/jobs/6600511339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872076333/jobs/6600509129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872059571/jobs/6600469205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872078625/jobs/6600514556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872068192/jobs/6600489606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872052847/jobs/6600453675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872067067/jobs/6600486878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872071956/jobs/6600499012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10519462152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3872065600/jobs/6600483200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519477671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3872057939/jobs/6600465215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519453773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872055411/jobs/6600459786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10519470094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3872055794/jobs/6600460512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10519430014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872077853/jobs/6600512985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872078348/jobs/6600513953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872073384/jobs/6600502571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872053594/jobs/6600455431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3872071299/jobs/6600497304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-09-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,37f5a3584aa44a919d3a620c7f2b4ad7e56c97c7
diff --git a/csv_reports/nightly-packaging-2023-01-10-0.csv b/csv_reports/nightly-packaging-2023-01-10-0.csv
deleted file mode 100644
index 65162b71463..00000000000
--- a/csv_reports/nightly-packaging-2023-01-10-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881568986/jobs/6620716590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545938787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881576554/jobs/6620733168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545923125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881565080/jobs/6620707696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545965033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881586929/jobs/6620757124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881585396/jobs/6620753787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545934262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881577298/jobs/6620734755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545957424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881590827/jobs/6620766211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881569366/jobs/6620717425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10548766597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10552921800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10551965350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10551321251'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10548023745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10548582282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10548093277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10550459030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10551008025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10548555924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10548634290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10548683285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10551435684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10551321837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10549062514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10548354457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10551037253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10548937495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881567030/jobs/6620711838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545917163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881587956/jobs/6620759539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545967149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881582570/jobs/6620747446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3881572877/jobs/6620725257', 'https://github.com/ursacomputing/crossbow/actions/runs/3881572877/jobs/6620725118', 'https://github.com/ursacomputing/crossbow/actions/runs/3881572877/jobs/6620724986', 'https://github.com/ursacomputing/crossbow/actions/runs/3881572877/jobs/6620724620']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881589292/jobs/6620762818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3881589871/jobs/6621728755', 'https://github.com/ursacomputing/crossbow/actions/runs/3881589871/jobs/6620764549', 'https://github.com/ursacomputing/crossbow/actions/runs/3881589871/jobs/6620764426', 'https://github.com/ursacomputing/crossbow/actions/runs/3881589871/jobs/6620764255', 'https://github.com/ursacomputing/crossbow/actions/runs/3881589871/jobs/6620764117']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-java-jars,github,{},java-jars/github.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881591164/jobs/6620766955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881571963/jobs/6620722626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-python-sdist,github,{},python-sdist/github.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621218021', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621217851', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621105696', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621023535', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621023395', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621023270', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621023157', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621023035', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621022909', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621022770', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6621022548', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6620754822', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6620754677', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6620754539', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6620754403', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6620754209', 'https://github.com/ursacomputing/crossbow/actions/runs/3881579165/jobs/6620739625']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881568412/jobs/6620715291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545906576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881589679/jobs/6620763627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545935856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881572313/jobs/6620723545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545964059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881581578/jobs/6620745048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545911012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881566738/jobs/6620711255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881580892/jobs/6620743451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881571185/jobs/6620720990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881566340/jobs/6620710398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-macos-mojave-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3881578781/jobs/6620738633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881583152/jobs/6620748842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881564567/jobs/6620706697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881584269/jobs/6620751477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881579532/jobs/6620740336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881588672/jobs/6620761127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545918962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3881588279/jobs/6620760193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545922452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881571590/jobs/6620721869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545943291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881590294/jobs/6620764928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10545915859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881570681/jobs/6620720041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10545951498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881577978/jobs/6620736564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881583634/jobs/6620749869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881586569/jobs/6620756386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881573817/jobs/6620726704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3881580645/jobs/6620742913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-10-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,85b167c05c2f93a95b23e8ac4fd4da576ea5b899
diff --git a/csv_reports/nightly-packaging-2023-01-11-0.csv b/csv_reports/nightly-packaging-2023-01-11-0.csv
deleted file mode 100644
index b5edb30b893..00000000000
--- a/csv_reports/nightly-packaging-2023-01-11-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891041077/jobs/6640798350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10572469459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891060115/jobs/6640842370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572456199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891039357/jobs/6640794728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572490771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891045674/jobs/6640808767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891060952/jobs/6640844017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572441029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891038864/jobs/6640793548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572485817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891060578/jobs/6640843333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891055906/jobs/6640832606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10572533550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10578237563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10575144113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10578520032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10574775536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10574908998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10575196568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10574956693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10576846790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10577507605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10575394987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10577953043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10575400480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10575944478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10575873173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10575817849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10578003999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10578537859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891042856/jobs/6640802224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572462805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891055571/jobs/6640831843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572480485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891049279/jobs/6640816514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3891045374/jobs/6640808432', 'https://github.com/ursacomputing/crossbow/actions/runs/3891045374/jobs/6640808227', 'https://github.com/ursacomputing/crossbow/actions/runs/3891045374/jobs/6640808068', 'https://github.com/ursacomputing/crossbow/actions/runs/3891045374/jobs/6640807914']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891039915/jobs/6640795904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3891054155/jobs/6641531719', 'https://github.com/ursacomputing/crossbow/actions/runs/3891054155/jobs/6640828936', 'https://github.com/ursacomputing/crossbow/actions/runs/3891054155/jobs/6640828771', 'https://github.com/ursacomputing/crossbow/actions/runs/3891054155/jobs/6640828597', 'https://github.com/ursacomputing/crossbow/actions/runs/3891054155/jobs/6640828420']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-java-jars,github,{},java-jars/github.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891057601/jobs/6640836555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891061775/jobs/6640845890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-python-sdist,github,{},python-sdist/github.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6641873157', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6641433875', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6641433730', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6641433601', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6641433477', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6641433336', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6641433134', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6641129165', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640979546', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640979406', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640979245', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640979042', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640978880', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640978741', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640978582', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640978351', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640831990', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640831611', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640831471', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640831281', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640831034', 'https://github.com/ursacomputing/crossbow/actions/runs/3891050461/jobs/6640819108']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891034767/jobs/6640784350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572467199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891056661/jobs/6640834358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572454621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891061420/jobs/6640844983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572445217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891059761/jobs/6640841433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572487834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891050861/jobs/6640820094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891037980/jobs/6640791847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891052279/jobs/6640823363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891046822/jobs/6640811438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891033588/jobs/6640781776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891041349/jobs/6640799074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891057306/jobs/6640835892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891035863/jobs/6640786732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891044627/jobs/6640806017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891044242/jobs/6640805234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10572513965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891048798/jobs/6640815564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572482104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891053345/jobs/6640826108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572442992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891043667/jobs/6640803949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572440214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3891042058/jobs/6640800602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10572441966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891058613/jobs/6640838711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891051646/jobs/6640821700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891035014/jobs/6640784789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891036248/jobs/6640787675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,872bbda4eb2e75690f0c756c616c171ad6615739
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3891048193/jobs/6640814354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-11-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,872bbda4eb2e75690f0c756c616c171ad6615739
diff --git a/csv_reports/nightly-packaging-2023-01-12-0.csv b/csv_reports/nightly-packaging-2023-01-12-0.csv
deleted file mode 100644
index 5488a921b9c..00000000000
--- a/csv_reports/nightly-packaging-2023-01-12-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900529430/jobs/6661295446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10599344198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900515939/jobs/6661266028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599318185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900524234/jobs/6661283617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599278795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900527250/jobs/6661289855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900509547/jobs/6661252573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599341844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900531955/jobs/6661301428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599288611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900508899/jobs/6661251403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900512426/jobs/6661258978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10599382854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10604242108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10602705621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10602717874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10601441691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10601788197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10602162992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10603566788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10601701694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10604785757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10604756585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10602410123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10602390937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10605507319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10602512376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10603065561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10605330491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10605194240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900519149/jobs/6661272817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599287264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900521413/jobs/6661277461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599331428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900525299/jobs/6661285661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3900510140/jobs/6661254412', 'https://github.com/ursacomputing/crossbow/actions/runs/3900510140/jobs/6661254254', 'https://github.com/ursacomputing/crossbow/actions/runs/3900510140/jobs/6661254093', 'https://github.com/ursacomputing/crossbow/actions/runs/3900510140/jobs/6661253946']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900523098/jobs/6661281186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3900534951/jobs/6662287960', 'https://github.com/ursacomputing/crossbow/actions/runs/3900534951/jobs/6661308803', 'https://github.com/ursacomputing/crossbow/actions/runs/3900534951/jobs/6661308676', 'https://github.com/ursacomputing/crossbow/actions/runs/3900534951/jobs/6661308553', 'https://github.com/ursacomputing/crossbow/actions/runs/3900534951/jobs/6661308414']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-java-jars,github,{},java-jars/github.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900515041/jobs/6661264168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900510919/jobs/6661255537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-python-sdist,github,{},python-sdist/github.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6662328133', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661886270', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661886086', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661885962', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661885797', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661885643', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661885440', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661569788', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661483577', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661483464', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661483315', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661483205', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661483085', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661482972', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661482852', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661482666', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661270093', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661269985', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661269889', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661269775', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661269633', 'https://github.com/ursacomputing/crossbow/actions/runs/3900513172/jobs/6661260556']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900532354/jobs/6661302379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599311086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900517341/jobs/6661269157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599277786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900521946/jobs/6661278684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599346569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900530524/jobs/6661298160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599320951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900516890/jobs/6661268169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900524875/jobs/6661284832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900513930/jobs/6661261956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900527605/jobs/6661290626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900513442/jobs/6661261155'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900530155/jobs/6661297143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900520679/jobs/6661276022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900522853/jobs/6661280545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900518042/jobs/6661270694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900535561/jobs/6661309931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599304324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900534377/jobs/6661306990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599335543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900512851/jobs/6661260052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599330673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900521770/jobs/6661278393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10599297538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900514366/jobs/6661262722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10599351660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900531205/jobs/6661299792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900510193/jobs/6661254578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900533036/jobs/6661304180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900519952/jobs/6661274501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3900519527/jobs/6661273656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-12-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,fc53ff8c5e2797c1a5a99db7f3aece80dd0b9f3e
diff --git a/csv_reports/nightly-packaging-2023-01-13-0.csv b/csv_reports/nightly-packaging-2023-01-13-0.csv
deleted file mode 100644
index 3e939c1ed68..00000000000
--- a/csv_reports/nightly-packaging-2023-01-13-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909667612/jobs/6680994643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625154815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909675294/jobs/6681010760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625130427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909667125/jobs/6680994055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625161657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909688723/jobs/6681041806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909687475/jobs/6681038821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625142379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909668741/jobs/6680996890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625141462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909682689/jobs/6681027175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909688101/jobs/6681040441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10627454433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10628339314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10629465998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10630415992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10627064444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10627493124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10629669114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10629342551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10629993517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10627334487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10627619996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10627841854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10627902093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10630737919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10631179571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10628199952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10629300217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10627396765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3909669995/jobs/6680999575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625166243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909670795/jobs/6681001214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625156623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909678101/jobs/6681016566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3909673623/jobs/6681007559', 'https://github.com/ursacomputing/crossbow/actions/runs/3909673623/jobs/6681007413', 'https://github.com/ursacomputing/crossbow/actions/runs/3909673623/jobs/6681007287', 'https://github.com/ursacomputing/crossbow/actions/runs/3909673623/jobs/6681007181']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909690503/jobs/6681046898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3909673262/jobs/6681890370', 'https://github.com/ursacomputing/crossbow/actions/runs/3909673262/jobs/6681006804', 'https://github.com/ursacomputing/crossbow/actions/runs/3909673262/jobs/6681006697', 'https://github.com/ursacomputing/crossbow/actions/runs/3909673262/jobs/6681006569', 'https://github.com/ursacomputing/crossbow/actions/runs/3909673262/jobs/6681006435']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-java-jars,github,{},java-jars/github.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909668019/jobs/6680995585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3909686845/jobs/6681037129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-python-sdist,github,{},python-sdist/github.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6682305249', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681922941', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681922811', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681922689', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681922538', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681922404', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681922126', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681490121', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681308169', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681308025', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681307899', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681307786', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681307628', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681307482', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681307357', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681307181', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681040582', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681040446', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681040294', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681040127', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681039979', 'https://github.com/ursacomputing/crossbow/actions/runs/3909684088/jobs/6681030533']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909690144/jobs/6681044957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625183375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3909684837/jobs/6681032298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625117811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3909691598/jobs/6681048191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625189172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3909692721/jobs/6681050773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625168460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909668317/jobs/6680996103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909687633/jobs/6681039299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909691433/jobs/6681047862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909676380/jobs/6681012882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909677873/jobs/6681016104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909669521/jobs/6680998649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909672665/jobs/6681005111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909676795/jobs/6681013720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909685766/jobs/6681034489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3909681464/jobs/6681023907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625127191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909687160/jobs/6681038003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625187225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909674800/jobs/6681009771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625145866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909671021/jobs/6681001697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10625116873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909679649/jobs/6681019957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10625171571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909688394/jobs/6681041158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909672536/jobs/6681004888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909683382/jobs/6681028907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909686388/jobs/6681035990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3909679801/jobs/6681020198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-13-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b55dd0e6968b51090daf18722a0d2d74e7fe87f5
diff --git a/csv_reports/nightly-packaging-2023-01-14-0.csv b/csv_reports/nightly-packaging-2023-01-14-0.csv
deleted file mode 100644
index 4070f81cee6..00000000000
--- a/csv_reports/nightly-packaging-2023-01-14-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917713111/jobs/6697674177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10646742047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917708246/jobs/6697663852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646737208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917720774/jobs/6697687425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646727685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917719320/jobs/6697684945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917709995/jobs/6697667992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646753430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917713636/jobs/6697675056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646744493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917718942/jobs/6697684254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917719674/jobs/6697685710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10646751359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10647642696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10647855823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10648520764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10647381611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10648211408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10648195243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10648397839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10648297644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10647568902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10647543846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10647502554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10647559937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10648691421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10647663896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10647505739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10648447575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10647658922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917716813/jobs/6697680449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646743921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917710568/jobs/6697669099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646742582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917718209/jobs/6697682955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3917710250/jobs/6697668692', 'https://github.com/ursacomputing/crossbow/actions/runs/3917710250/jobs/6697668651', 'https://github.com/ursacomputing/crossbow/actions/runs/3917710250/jobs/6697668612', 'https://github.com/ursacomputing/crossbow/actions/runs/3917710250/jobs/6697668575']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917708859/jobs/6697665093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3917717343/jobs/6698004106', 'https://github.com/ursacomputing/crossbow/actions/runs/3917717343/jobs/6697681508', 'https://github.com/ursacomputing/crossbow/actions/runs/3917717343/jobs/6697681458', 'https://github.com/ursacomputing/crossbow/actions/runs/3917717343/jobs/6697681419', 'https://github.com/ursacomputing/crossbow/actions/runs/3917717343/jobs/6697681370']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-java-jars,github,{},java-jars/github.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917711714/jobs/6697671073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917716441/jobs/6697679801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-python-sdist,github,{},python-sdist/github.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6698028284', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697891428', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697891384', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697891323', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697891272', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697891229', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697891171', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697772987', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697733074', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697733026', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697732965', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697732920', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697732878', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697732842', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697732758', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697732562', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697677232', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697677194', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697677139', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697677092', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697677042', 'https://github.com/ursacomputing/crossbow/actions/runs/3917712516/jobs/6697672957']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917712236/jobs/6697672359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646753647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917716076/jobs/6697679209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646732726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917715041/jobs/6697677630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646730814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917719824/jobs/6697685976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646728748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917713779/jobs/6697675287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917718522/jobs/6697683465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-macos-big-sur-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3917709696/jobs/6697667280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917713355/jobs/6697674558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917717415/jobs/6697681533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917712005/jobs/6697671742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917716614/jobs/6697680118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917707798/jobs/6697662950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917709777/jobs/6697667501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3917719252/jobs/6697684877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646743593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917707432/jobs/6697662105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646734240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917707200/jobs/6697661517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646746710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3917719541/jobs/6697685402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646753257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917714219/jobs/6697676102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10646748645'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917710861/jobs/6697669631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917706973/jobs/6697660887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917717121/jobs/6697680997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917718764/jobs/6697683909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3917707309/jobs/6697661809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,a49b0f8fd6467464c3f66f248d69db640e383e1b
diff --git a/csv_reports/nightly-packaging-2023-01-15-0.csv b/csv_reports/nightly-packaging-2023-01-15-0.csv
deleted file mode 100644
index f340fb496b6..00000000000
--- a/csv_reports/nightly-packaging-2023-01-15-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922581484/jobs/6705614549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655992224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922585387/jobs/6705623646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655966481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922580906/jobs/6705613413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655966853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922594653/jobs/6705640869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922589349/jobs/6705631165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655980977'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922584839/jobs/6705622226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655983087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922585023/jobs/6705622691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922581112/jobs/6705613812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10657063537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10656882974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10657177312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10657807654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10656779656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10656635867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10656827478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10656689782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10657405608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10656744689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10657676010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10656826712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10657550779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10657939820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10657040437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10658045963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10657492719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10657951508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922586458/jobs/6705625592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655991605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922590750/jobs/6705633498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655979357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922582292/jobs/6705616030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3922594938/jobs/6705641414', 'https://github.com/ursacomputing/crossbow/actions/runs/3922594938/jobs/6705641369', 'https://github.com/ursacomputing/crossbow/actions/runs/3922594938/jobs/6705641328', 'https://github.com/ursacomputing/crossbow/actions/runs/3922594938/jobs/6705641287']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922582074/jobs/6705615636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3922589724/jobs/6705875673', 'https://github.com/ursacomputing/crossbow/actions/runs/3922589724/jobs/6705631953', 'https://github.com/ursacomputing/crossbow/actions/runs/3922589724/jobs/6705631920', 'https://github.com/ursacomputing/crossbow/actions/runs/3922589724/jobs/6705631877', 'https://github.com/ursacomputing/crossbow/actions/runs/3922589724/jobs/6705631819']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-java-jars,github,{},java-jars/github.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922590439/jobs/6705633063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922594772/jobs/6705641031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-python-sdist,github,{},python-sdist/github.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6706003845', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705809578', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705809532', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705809454', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705809400', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705809301', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705809222', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705730871', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705690033', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705690000', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705689970', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705689936', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705689902', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705689858', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705689833', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705689788', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705630386', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705630332', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705630276', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705630226', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705630178', 'https://github.com/ursacomputing/crossbow/actions/runs/3922586355/jobs/6705625393']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922588282/jobs/6705629484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655977548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922585965/jobs/6705624692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655994115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922592234/jobs/6705636366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655970352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922584552/jobs/6705621483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655972664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922586613/jobs/6705625884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922583574/jobs/6705618923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922581798/jobs/6705615111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922585809/jobs/6705624346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922595137/jobs/6705641590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922587740/jobs/6705628388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922590541/jobs/6705633193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922589141/jobs/6705630872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922589889/jobs/6705632223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922587865/jobs/6705628644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655962810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922592932/jobs/6705637677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655985010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922586802/jobs/6705626262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655976842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922593369/jobs/6705638373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655990829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922592348/jobs/6705636631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10655977121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922585606/jobs/6705623983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922588488/jobs/6705629800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922590190/jobs/6705632678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922584126/jobs/6705620436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3922591580/jobs/6705635053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-15-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b743ee9ba2f33df0ecd3e4ac68118d55d817270d
diff --git a/csv_reports/nightly-packaging-2023-01-16-0.csv b/csv_reports/nightly-packaging-2023-01-16-0.csv
deleted file mode 100644
index eb7db7215e4..00000000000
--- a/csv_reports/nightly-packaging-2023-01-16-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928575666/jobs/6716345951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668821539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928591448/jobs/6716382447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668761946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928576992/jobs/6716348614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668807200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928577255/jobs/6716349200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928572156/jobs/6716338369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668795742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928563905/jobs/6716321079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668817218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928573599/jobs/6716341607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928586297/jobs/6716370753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10668826460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10671450016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10674504825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10673951480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10673041914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10670882957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10671906154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10671283342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10670910893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10674249662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10671584941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10671955354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10671773167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10674696328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10672322532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10672188429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10674947353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10675110477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928580060/jobs/6716355848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668783088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928589066/jobs/6716377018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668763093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928569779/jobs/6716333749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3928583908/jobs/6716365802', 'https://github.com/ursacomputing/crossbow/actions/runs/3928583908/jobs/6716365679', 'https://github.com/ursacomputing/crossbow/actions/runs/3928583908/jobs/6716365556', 'https://github.com/ursacomputing/crossbow/actions/runs/3928583908/jobs/6716365436']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928586067/jobs/6716370177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3928583295/jobs/6717379225', 'https://github.com/ursacomputing/crossbow/actions/runs/3928583295/jobs/6716364328', 'https://github.com/ursacomputing/crossbow/actions/runs/3928583295/jobs/6716364179', 'https://github.com/ursacomputing/crossbow/actions/runs/3928583295/jobs/6716364035', 'https://github.com/ursacomputing/crossbow/actions/runs/3928583295/jobs/6716363912']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-java-jars,github,{},java-jars/github.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928575316/jobs/6716345119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928565960/jobs/6716325449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-python-sdist,github,{},python-sdist/github.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6717406873', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716864030', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716863858', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716863714', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716863550', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716863355', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716863143', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716629507', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716522187', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716522077', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716521966', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716521822', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716521716', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716521617', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716521493', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716521326', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716372966', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716372837', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716372703', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716372617', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716372495', 'https://github.com/ursacomputing/crossbow/actions/runs/3928582759/jobs/6716362679']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928588237/jobs/6716375326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668777622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928581223/jobs/6716358606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668797819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928576098/jobs/6716346956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668830832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928584296/jobs/6716366326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668759926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928567559/jobs/6716328896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928567801/jobs/6716329581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928591697/jobs/6716383011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928570236/jobs/6716334607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928587600/jobs/6716373924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928584601/jobs/6716367068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928567208/jobs/6716328046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928576578/jobs/6716347811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928566442/jobs/6716326422'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3928570635/jobs/6716335254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668802664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928572482/jobs/6716339098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668832569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928581511/jobs/6716359128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668825138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3928563467/jobs/6716320382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668829175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928574797/jobs/6716344085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10668799898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928568252/jobs/6716330574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928568414/jobs/6716330865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928586977/jobs/6716372618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928577729/jobs/6716350111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3928578462/jobs/6716351884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,7e6bcd1bd7d8b3f7da39098d80881ef4f3b1d765
diff --git a/csv_reports/nightly-packaging-2023-01-17-0.csv b/csv_reports/nightly-packaging-2023-01-17-0.csv
deleted file mode 100644
index 42da7812048..00000000000
--- a/csv_reports/nightly-packaging-2023-01-17-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937453602/jobs/6734994744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692677827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937438247/jobs/6734958916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692631367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937428990/jobs/6734937230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692699349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937437502/jobs/6734957137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937456548/jobs/6735001781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692753259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937444071/jobs/6734972697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692746021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937455942/jobs/6735000101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937445240/jobs/6734975545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10694963352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10695507482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10695652538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10695620386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10698072106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10697000076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10698271206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10694886485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10694728135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10695111862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10695640797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10697810795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10695767586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10694789914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10696235360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10695383797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10698854318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,1a8272001deb5be1053bb737493c368f659bce09
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10698259451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,1a8272001deb5be1053bb737493c368f659bce09
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937432456/jobs/6734944662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692722613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937461748/jobs/6735013521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692716009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937462777/jobs/6735015585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,1a8272001deb5be1053bb737493c368f659bce09
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3937457303/jobs/6735003720', 'https://github.com/ursacomputing/crossbow/actions/runs/3937457303/jobs/6735003577', 'https://github.com/ursacomputing/crossbow/actions/runs/3937457303/jobs/6735003407', 'https://github.com/ursacomputing/crossbow/actions/runs/3937457303/jobs/6735003274']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,1a8272001deb5be1053bb737493c368f659bce09
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937448574/jobs/6734983426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,1a8272001deb5be1053bb737493c368f659bce09
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3937455288/jobs/6735996683', 'https://github.com/ursacomputing/crossbow/actions/runs/3937455288/jobs/6734999162', 'https://github.com/ursacomputing/crossbow/actions/runs/3937455288/jobs/6734999010', 'https://github.com/ursacomputing/crossbow/actions/runs/3937455288/jobs/6734998805', 'https://github.com/ursacomputing/crossbow/actions/runs/3937455288/jobs/6734998646']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-java-jars,github,{},java-jars/github.yml,1a8272001deb5be1053bb737493c368f659bce09
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937420883/jobs/6734918477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,1a8272001deb5be1053bb737493c368f659bce09
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937438760/jobs/6734960056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-python-sdist,github,{},python-sdist/github.yml,1a8272001deb5be1053bb737493c368f659bce09
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6736388205', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735959923', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735959702', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735959546', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735959345', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735959179', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735958963', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735413474', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735301601', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735301485', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735301381', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735301266', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735301151', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735301023', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735300813', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6735300644', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6734950403', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6734950229', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6734950029', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6734949787', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6734949570', 'https://github.com/ursacomputing/crossbow/actions/runs/3937429935/jobs/6734939353']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,1a8272001deb5be1053bb737493c368f659bce09
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937436917/jobs/6734955628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692703413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937421895/jobs/6734920991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692690815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937461274/jobs/6735012452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692688859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937421639/jobs/6734920387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692744724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937459179/jobs/6735007203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937426511/jobs/6734932137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937454075/jobs/6734995574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937458396/jobs/6735005430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937466624/jobs/6735024633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937422244/jobs/6734921864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937425955/jobs/6734930508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937435330/jobs/6734950999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937450878/jobs/6734989015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937451530/jobs/6734990464'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692682878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937423654/jobs/6734925091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692727480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937434150/jobs/6734948492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692684541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937464379/jobs/6735019069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10692649874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937465157/jobs/6735021233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10692651870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937428377/jobs/6734936063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937446349/jobs/6734978479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937446814/jobs/6734979562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937446521/jobs/6734978793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,1a8272001deb5be1053bb737493c368f659bce09
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3937425340/jobs/6734928832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-17-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,1a8272001deb5be1053bb737493c368f659bce09
diff --git a/csv_reports/nightly-packaging-2023-01-18-0.csv b/csv_reports/nightly-packaging-2023-01-18-0.csv
deleted file mode 100644
index baa860ace87..00000000000
--- a/csv_reports/nightly-packaging-2023-01-18-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947071514/jobs/6755473559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719686442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947082105/jobs/6755497066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719690924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947082529/jobs/6755498272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719704042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947084329/jobs/6755502686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947088859/jobs/6755513516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719693751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947092266/jobs/6755521435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719648319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947085911/jobs/6755506558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947096772/jobs/6755531244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10722485526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10723378813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10722438537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10722432032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10725072009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10722504091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10724713952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10721812024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10723907259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10722309934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10722808030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10725438540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10725230838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10723018209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10726493157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10723358770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10726492229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-conda-win-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10723359349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947071939/jobs/6755474457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719709472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947087081/jobs/6755509031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719636053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947096307/jobs/6755530161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3947081219/jobs/6755495559', 'https://github.com/ursacomputing/crossbow/actions/runs/3947081219/jobs/6755495297', 'https://github.com/ursacomputing/crossbow/actions/runs/3947081219/jobs/6755495131', 'https://github.com/ursacomputing/crossbow/actions/runs/3947081219/jobs/6755494994']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947091358/jobs/6755519171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3947073810/jobs/6756280785', 'https://github.com/ursacomputing/crossbow/actions/runs/3947073810/jobs/6755479034', 'https://github.com/ursacomputing/crossbow/actions/runs/3947073810/jobs/6755478919', 'https://github.com/ursacomputing/crossbow/actions/runs/3947073810/jobs/6755478789', 'https://github.com/ursacomputing/crossbow/actions/runs/3947073810/jobs/6755478624']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-java-jars,github,{},java-jars/github.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947074659/jobs/6755480275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947099250/jobs/6755536191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-python-sdist,github,{},python-sdist/github.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6756493923', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6756043209', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6756043081', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6756042938', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6756042686', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6756042525', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6756042350', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755782177', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755696191', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755696055', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755695939', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755695811', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755695674', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755695536', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755695413', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755695228', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755526277', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755526136', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755526034', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755525898', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755525707', 'https://github.com/ursacomputing/crossbow/actions/runs/3947090459/jobs/6755517177']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947088544/jobs/6755512811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719633988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947100397/jobs/6755538603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719662328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947097874/jobs/6755533712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719698311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947077542/jobs/6755486609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719702836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947099929/jobs/6755537691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947075454/jobs/6755482139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947077139/jobs/6755485932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947095517/jobs/6755528557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947096001/jobs/6755529613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947079749/jobs/6755491631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947094549/jobs/6755526492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947089678/jobs/6755515328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947075831/jobs/6755482996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947092956/jobs/6755522966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719658604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947074987/jobs/6755481110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719692699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947090102/jobs/6755516276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719669006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947076594/jobs/6755484625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719651996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3947087540/jobs/6755510232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10719676988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947086290/jobs/6755507348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947086674/jobs/6755508112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947080675/jobs/6755493646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947098774/jobs/6755535392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3947071079/jobs/6755472733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-18-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4e439f6a597180c5fc8ff1552c860cecd33736c5
diff --git a/csv_reports/nightly-packaging-2023-01-19-0.csv b/csv_reports/nightly-packaging-2023-01-19-0.csv
deleted file mode 100644
index c4858412cdf..00000000000
--- a/csv_reports/nightly-packaging-2023-01-19-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956686388/jobs/6776173529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746834242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956694406/jobs/6776192566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746816548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956676271/jobs/6776151636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746835033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956694786/jobs/6776195942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956675402/jobs/6776149853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746767961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956685132/jobs/6776171040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746841763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3956695145/jobs/6776194146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956695890/jobs/6776195774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10749623331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10753558578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10752317046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10750592172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10749546949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10748801617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10749437599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10752177097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10751600054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10749349365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10749527966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10752370801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10749662258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10752735202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10750426754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10751718542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10750333833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10749707780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956688400/jobs/6776178764'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746826854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956678072/jobs/6776155502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746846045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956689320/jobs/6776180930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3956690569/jobs/6776184297', 'https://github.com/ursacomputing/crossbow/actions/runs/3956690569/jobs/6776184105', 'https://github.com/ursacomputing/crossbow/actions/runs/3956690569/jobs/6776183951', 'https://github.com/ursacomputing/crossbow/actions/runs/3956690569/jobs/6776183795']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3956701984/jobs/6776208328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3956697178/jobs/6777159806', 'https://github.com/ursacomputing/crossbow/actions/runs/3956697178/jobs/6776199209', 'https://github.com/ursacomputing/crossbow/actions/runs/3956697178/jobs/6776199092', 'https://github.com/ursacomputing/crossbow/actions/runs/3956697178/jobs/6776198953', 'https://github.com/ursacomputing/crossbow/actions/runs/3956697178/jobs/6776198767']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-java-jars,github,{},java-jars/github.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956677380/jobs/6776153940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956689734/jobs/6776181980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-python-sdist,github,{},python-sdist/github.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6777188763', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776769793', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776769634', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776769490', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776769335', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776769184', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776768980', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776445437', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776354650', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776354516', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776354371', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776354193', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776354046', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776353908', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776353742', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776353533', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776214970', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776214795', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776214606', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776214485', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776214295', 'https://github.com/ursacomputing/crossbow/actions/runs/3956699333/jobs/6776203483']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956679736/jobs/6776158790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746811220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956684857/jobs/6776170467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746806671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956675038/jobs/6776149066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746842889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956686800/jobs/6776174329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746768746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956680524/jobs/6776160433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956678995/jobs/6776157363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956693412/jobs/6776190285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956700786/jobs/6776206197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956699740/jobs/6776204074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956702276/jobs/6776209111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956675900/jobs/6776150799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956687300/jobs/6776175451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956698671/jobs/6776202330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956691589/jobs/6776185977'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746818601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956676571/jobs/6776152269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746828812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3956683514/jobs/6776167740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746833298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3956684388/jobs/6776169494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746789653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3956694115/jobs/6776191898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10746814407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3956678308/jobs/6776155968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3956681909/jobs/6776163181'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3956696523/jobs/6776197137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3956688618/jobs/6776179145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,e4019add4189a9abe25f8ff6f12099ed19921104
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3956688800/jobs/6776179841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,e4019add4189a9abe25f8ff6f12099ed19921104
diff --git a/csv_reports/nightly-packaging-2023-01-20-0.csv b/csv_reports/nightly-packaging-2023-01-20-0.csv
deleted file mode 100644
index d22ef802d63..00000000000
--- a/csv_reports/nightly-packaging-2023-01-20-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966000357/jobs/6796312921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773244563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966000902/jobs/6796314178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773243532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965996916/jobs/6796305061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773190799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965989958/jobs/6796289950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966003284/jobs/6796319734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773192589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965987198/jobs/6796284164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773233621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3965984977/jobs/6796278942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966003006/jobs/6796318872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10776470080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10776257340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10776977726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10779053677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10777818680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10775007719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10775226782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10777340172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10776844799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10775388697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10777702774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10779084241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10775832132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10776248105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10776421951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10779267129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10776670020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10776791650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965998928/jobs/6796309405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773218227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966003689/jobs/6796321081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773242356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966002252/jobs/6796316843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3966007134/jobs/6796330573', 'https://github.com/ursacomputing/crossbow/actions/runs/3966007134/jobs/6796330447', 'https://github.com/ursacomputing/crossbow/actions/runs/3966007134/jobs/6796330282', 'https://github.com/ursacomputing/crossbow/actions/runs/3966007134/jobs/6796330097']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966011639/jobs/6796340915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3965994757/jobs/6796952928', 'https://github.com/ursacomputing/crossbow/actions/runs/3965994757/jobs/6796300492', 'https://github.com/ursacomputing/crossbow/actions/runs/3965994757/jobs/6796300350', 'https://github.com/ursacomputing/crossbow/actions/runs/3965994757/jobs/6796300197', 'https://github.com/ursacomputing/crossbow/actions/runs/3965994757/jobs/6796300064']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-java-jars,github,{},java-jars/github.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966007405/jobs/6796330799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965999660/jobs/6796311109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-python-sdist,github,{},python-sdist/github.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6797246312', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796791621', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796791467', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796791314', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796791169', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796791030', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796790745', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796528963', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796453119', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796452998', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796452893', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796452729', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796452622', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796452486', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796452404', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796452277', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796326204', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796326072', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796325943', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796325837', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796325702', 'https://github.com/ursacomputing/crossbow/actions/runs/3966000605/jobs/6796313526']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965993113/jobs/6796296313'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773197653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965989393/jobs/6796288439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773248333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965988550/jobs/6796286721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773246182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965994053/jobs/6796298440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773263403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966009251/jobs/6796335540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965986427/jobs/6796282497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966009910/jobs/6796336810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965998171/jobs/6796307643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965989121/jobs/6796287737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966007827/jobs/6796331967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965991373/jobs/6796292982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966008106/jobs/6796332751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965999820/jobs/6796311534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3965999448/jobs/6796310544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773250341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966008283/jobs/6796333298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773211823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966003901/jobs/6796321940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773249463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3966001740/jobs/6796315838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773245372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3965989679/jobs/6796289119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10773246731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3965987055/jobs/6796283839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3965996240/jobs/6796303817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3965992464/jobs/6796295231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3966002646/jobs/6796317774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3966009550/jobs/6796336094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,9a1373452ff5b4cf41cc371e0585d8dda91ffd36
diff --git a/csv_reports/nightly-packaging-2023-01-21-0.csv b/csv_reports/nightly-packaging-2023-01-21-0.csv
deleted file mode 100644
index 6c31e5fe72e..00000000000
--- a/csv_reports/nightly-packaging-2023-01-21-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974035114/jobs/6813065153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794910094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974032029/jobs/6813057991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794909293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974035985/jobs/6813066719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794880856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974046077/jobs/6813085702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974033295/jobs/6813060803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794911078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974039819/jobs/6813074159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794879069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3974034809/jobs/6813064605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974043593/jobs/6813080997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10795795253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10796639783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10795702361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10795667219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10795657115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10796251720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10795532872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10796474249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10796190665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10795564826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10796468392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10795624757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10796359003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10795935638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10796498110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-win-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10795919596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10795773156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,2117d028699edd9f4197650890f3226cdd285c23
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10795932788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,2117d028699edd9f4197650890f3226cdd285c23
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974048460/jobs/6813089732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794908601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974047620/jobs/6813088101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794913572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974030730/jobs/6813055417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,2117d028699edd9f4197650890f3226cdd285c23
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3974039367/jobs/6813073496', 'https://github.com/ursacomputing/crossbow/actions/runs/3974039367/jobs/6813073453', 'https://github.com/ursacomputing/crossbow/actions/runs/3974039367/jobs/6813073410', 'https://github.com/ursacomputing/crossbow/actions/runs/3974039367/jobs/6813073362']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,2117d028699edd9f4197650890f3226cdd285c23
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974043752/jobs/6813081326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,2117d028699edd9f4197650890f3226cdd285c23
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3974042148/jobs/6813391030', 'https://github.com/ursacomputing/crossbow/actions/runs/3974042148/jobs/6813078573', 'https://github.com/ursacomputing/crossbow/actions/runs/3974042148/jobs/6813078514', 'https://github.com/ursacomputing/crossbow/actions/runs/3974042148/jobs/6813078470', 'https://github.com/ursacomputing/crossbow/actions/runs/3974042148/jobs/6813078422']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-java-jars,github,{},java-jars/github.yml,2117d028699edd9f4197650890f3226cdd285c23
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974047792/jobs/6813088400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,2117d028699edd9f4197650890f3226cdd285c23
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974032702/jobs/6813059575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-python-sdist,github,{},python-sdist/github.yml,2117d028699edd9f4197650890f3226cdd285c23
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813410253', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813285445', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813285397', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813285351', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813285307', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813285247', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813285176', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813159350', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813131476', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813131428', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813131376', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813131327', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813131284', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813131241', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813131196', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813131146', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813079356', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813079298', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813079239', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813079196', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813079139', 'https://github.com/ursacomputing/crossbow/actions/runs/3974040152/jobs/6813074669']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,2117d028699edd9f4197650890f3226cdd285c23
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974032474/jobs/6813059184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794903017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974039213/jobs/6813073067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794883055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974044981/jobs/6813083489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794892912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974046638/jobs/6813086431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794894389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974035403/jobs/6813065658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974047219/jobs/6813087375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974041001/jobs/6813076270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974030975/jobs/6813055862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974037546/jobs/6813069946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974038393/jobs/6813071580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974037911/jobs/6813070643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974039023/jobs/6813072742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974045312/jobs/6813084127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974034197/jobs/6813063122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794917655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974037705/jobs/6813070266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794888998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3974038896/jobs/6813072461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794903540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3974040617/jobs/6813075534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794893640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3974043365/jobs/6813080556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10794896714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3974034004/jobs/6813062601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3974030500/jobs/6813055111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3974038723/jobs/6813072123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3974033589/jobs/6813061525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,2117d028699edd9f4197650890f3226cdd285c23
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3974031261/jobs/6813056468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-21-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,2117d028699edd9f4197650890f3226cdd285c23
diff --git a/csv_reports/nightly-packaging-2023-01-22-0.csv b/csv_reports/nightly-packaging-2023-01-22-0.csv
deleted file mode 100644
index 92e74ebae55..00000000000
--- a/csv_reports/nightly-packaging-2023-01-22-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978865728/jobs/6820911484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803979606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978866864/jobs/6820913349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803975034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978870675/jobs/6820920001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803969743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978871692/jobs/6820922045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978861333/jobs/6820903540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803982334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978868716/jobs/6820916642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803970937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978860817/jobs/6820902567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978862950/jobs/6820906585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10803990905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10804790121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10805781912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10805483627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10804607716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10805371647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10804661359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10804663991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10805204287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10804828047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10805675383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10805659265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10805823237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10804895904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10805093838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10805143728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-win-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/10803994381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10804871355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978866079/jobs/6820912128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803989489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978872454/jobs/6820923462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803977044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978860641/jobs/6820902190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3978870527/jobs/6820919844', 'https://github.com/ursacomputing/crossbow/actions/runs/3978870527/jobs/6820919813', 'https://github.com/ursacomputing/crossbow/actions/runs/3978870527/jobs/6820919783', 'https://github.com/ursacomputing/crossbow/actions/runs/3978870527/jobs/6820919749']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978874066/jobs/6820926421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3978869490/jobs/6821259169', 'https://github.com/ursacomputing/crossbow/actions/runs/3978869490/jobs/6820918072', 'https://github.com/ursacomputing/crossbow/actions/runs/3978869490/jobs/6820918035', 'https://github.com/ursacomputing/crossbow/actions/runs/3978869490/jobs/6820917989', 'https://github.com/ursacomputing/crossbow/actions/runs/3978869490/jobs/6820917943']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-java-jars,github,{},java-jars/github.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978871166/jobs/6820921036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978869700/jobs/6820918270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-python-sdist,github,{},python-sdist/github.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6821270575', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6821118372', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6821118324', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6821118288', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6821118250', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6821118213', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6821118174', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820998823', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820968540', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820968519', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820968488', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820968458', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820968425', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820968396', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820968361', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820968322', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820916555', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820916463', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820916430', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820916385', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820916348', 'https://github.com/ursacomputing/crossbow/actions/runs/3978866343/jobs/6820912528']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978861923/jobs/6820904648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803970486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978871299/jobs/6820921204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803987341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978864568/jobs/6820909422'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803995453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978870375/jobs/6820919435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803978489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978867047/jobs/6820913678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978871533/jobs/6820921689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978867437/jobs/6820914488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978863078/jobs/6820906796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978863496/jobs/6820907490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978867680/jobs/6820915020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978868033/jobs/6820915566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978867841/jobs/6820915249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978873120/jobs/6820924749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978872054/jobs/6820922743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803978884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978868974/jobs/6820917040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803969773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978860436/jobs/6820901846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803984288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978873520/jobs/6820925396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803985936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3978864786/jobs/6820909713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10803974540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978873342/jobs/6820925106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978868306/jobs/6820916001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978870066/jobs/6820918858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978869354/jobs/6820917664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3978860323/jobs/6820901618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-22-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,63967ac00dbf788a2309a70f949e13f3d3e93f24
diff --git a/csv_reports/nightly-packaging-2023-01-23-0.csv b/csv_reports/nightly-packaging-2023-01-23-0.csv
deleted file mode 100644
index 135ee509e1d..00000000000
--- a/csv_reports/nightly-packaging-2023-01-23-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984653544/jobs/6831107203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816053573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984650158/jobs/6831100081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816119665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984628841/jobs/6831051571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816079611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984645993/jobs/6831091127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984632001/jobs/6831058016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816121492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984630777/jobs/6831055557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816113021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984626564/jobs/6831046131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984629134/jobs/6831052215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10816151871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10821478178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10822584060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10819630989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10818070102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10818485139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10818799139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10818187379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10818057375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10818646510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10820897343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10822026771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10819139245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10822245809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10819655117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10821050210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10822413510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-conda-win-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10819117772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984628618/jobs/6831051000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816074174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984632961/jobs/6831060264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816115583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984638911/jobs/6831074247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3984623936/jobs/6831041759', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623936/jobs/6831041614', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623936/jobs/6831041461', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623936/jobs/6831041356']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984649856/jobs/6831099474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/3984624229/jobs/6832014144', 'https://github.com/ursacomputing/crossbow/actions/runs/3984624229/jobs/6831042410', 'https://github.com/ursacomputing/crossbow/actions/runs/3984624229/jobs/6831042276', 'https://github.com/ursacomputing/crossbow/actions/runs/3984624229/jobs/6831042121', 'https://github.com/ursacomputing/crossbow/actions/runs/3984624229/jobs/6831041959']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-java-jars,github,{},java-jars/github.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984634162/jobs/6831063020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984634700/jobs/6831064078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-python-sdist,github,{},python-sdist/github.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6832005002', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831541149', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831540981', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831540831', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831540666', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831540502', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831540273', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831280039', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831201134', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831201060', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831200950', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831200852', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831200739', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831200583', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831200432', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831200250', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831051288', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831051195', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831051124', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831051014', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831050881', 'https://github.com/ursacomputing/crossbow/actions/runs/3984623374/jobs/6831039886']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984628314/jobs/6831050090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816141407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984653891/jobs/6831107951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816067897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984627380/jobs/6831047886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816064644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984637569/jobs/6831071004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816137402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984627730/jobs/6831048735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984620998/jobs/6831034673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984643285/jobs/6831085003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984644771/jobs/6831088355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984636973/jobs/6831069587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984624964/jobs/6831043390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984642546/jobs/6831083495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984636306/jobs/6831067802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984650834/jobs/6831101537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984626090/jobs/6831045289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816077372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984654271/jobs/6831108807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816083093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984623665/jobs/6831040604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816128059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984639514/jobs/6831075636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816088363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3984640073/jobs/6831076918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10816054780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984621310/jobs/6831035325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984622252/jobs/6831037142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984649157/jobs/6831098043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984638159/jobs/6831072521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3984655876/jobs/6831112450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-23-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,cb0f0178dacd922f355255a16c85820fb4e390c8
diff --git a/csv_reports/nightly-packaging-2023-01-24-0.csv b/csv_reports/nightly-packaging-2023-01-24-0.csv
deleted file mode 100644
index e7314eeefbb..00000000000
--- a/csv_reports/nightly-packaging-2023-01-24-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994369550/jobs/6851998688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843433269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994359276/jobs/6851972674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843480439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994368248/jobs/6851995122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843447181'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994356155/jobs/6851965819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994363044/jobs/6851982624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843449235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994368941/jobs/6851997053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843429984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994358245/jobs/6851970285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994366613/jobs/6851991425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10847081928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10848898915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10847115091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10847103551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10849310133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10845972766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10848433082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10846093745'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10845627260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10849065385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10850067749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10846573133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10846375933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10846759616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10847118261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10849161674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10847009272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-conda-win-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/10843482955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994372599/jobs/6852006556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843435882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994364690/jobs/6851986912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843419550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994365386/jobs/6851988702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3994379954/jobs/6852024933', 'https://github.com/ursacomputing/crossbow/actions/runs/3994379954/jobs/6852024827', 'https://github.com/ursacomputing/crossbow/actions/runs/3994379954/jobs/6852024720', 'https://github.com/ursacomputing/crossbow/actions/runs/3994379954/jobs/6852024610']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994376628/jobs/6852016067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3994361887/jobs/6852959316', 'https://github.com/ursacomputing/crossbow/actions/runs/3994361887/jobs/6851980052', 'https://github.com/ursacomputing/crossbow/actions/runs/3994361887/jobs/6851979886', 'https://github.com/ursacomputing/crossbow/actions/runs/3994361887/jobs/6851979713', 'https://github.com/ursacomputing/crossbow/actions/runs/3994361887/jobs/6851979558']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-java-jars,github,{},java-jars/github.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994374318/jobs/6852010761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994361012/jobs/6851977732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-python-sdist,github,{},python-sdist/github.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6853510827', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6853069084', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6853068969', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6853068879', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6853068773', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6853068628', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6853068436', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6852339787', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6852252841', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6852252728', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6852252629', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6852252526', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6852252418', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6852252310', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6852252212', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6852252070', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6851967908', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6851967758', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6851967614', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6851967463', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6851967279', 'https://github.com/ursacomputing/crossbow/actions/runs/3994352720/jobs/6851958043']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994357367/jobs/6851968429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843431093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994353991/jobs/6851960630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843487473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994355844/jobs/6851965079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843434355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994365752/jobs/6851989709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843479328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994370798/jobs/6852002024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994354886/jobs/6851962714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994363748/jobs/6851984400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994355515/jobs/6851964142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994362272/jobs/6851980569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994357071/jobs/6851967872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994379109/jobs/6852022497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994379605/jobs/6852023726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994367564/jobs/6851993381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994357798/jobs/6851969375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843441359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994367878/jobs/6851994218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843454693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994379346/jobs/6852023122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843475189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/3994378690/jobs/6852021565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10843482628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994369237/jobs/6851997882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10843414922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994363362/jobs/6851983367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994377400/jobs/6852018053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994354395/jobs/6851961586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994369831/jobs/6851999536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/3994364059/jobs/6851985081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,22e3bed4d1820f763ff04595d4baf171e7ecae2d
diff --git a/csv_reports/nightly-packaging-2023-01-25-0.csv b/csv_reports/nightly-packaging-2023-01-25-0.csv
deleted file mode 100644
index 09a9b673a07..00000000000
--- a/csv_reports/nightly-packaging-2023-01-25-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004146724/jobs/6872925396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871100042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004143350/jobs/6872918116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871127480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4004159694/jobs/6872955323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871137659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-centos-7-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4004149030/jobs/6872930883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004147494/jobs/6872926993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871152967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004163410/jobs/6872963891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871116751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004146281/jobs/6872924428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004145196/jobs/6872921915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10871296125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10875801353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10874210381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10873923608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10873208656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10871347910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10871369084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10873272072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10875292272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10874154073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10874444862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10874812328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10872066508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10874836950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10871957369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10873898631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-win-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10871406326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-conda-win-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10871178529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4004162973/jobs/6872963034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871160393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004142053/jobs/6872915532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871169952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004162278/jobs/6872961607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4004157181/jobs/6872949936', 'https://github.com/ursacomputing/crossbow/actions/runs/4004157181/jobs/6872949833', 'https://github.com/ursacomputing/crossbow/actions/runs/4004157181/jobs/6872949723', 'https://github.com/ursacomputing/crossbow/actions/runs/4004157181/jobs/6872949626']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-homebrew-r-brew,pending,['https://github.com/ursacomputing/crossbow/actions/runs/4004154396/jobs/6872943656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4004155093/jobs/6874031104', 'https://github.com/ursacomputing/crossbow/actions/runs/4004155093/jobs/6872945568', 'https://github.com/ursacomputing/crossbow/actions/runs/4004155093/jobs/6872945428', 'https://github.com/ursacomputing/crossbow/actions/runs/4004155093/jobs/6872945298', 'https://github.com/ursacomputing/crossbow/actions/runs/4004155093/jobs/6872945150']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-java-jars,github,{},java-jars/github.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004151741/jobs/6872937386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004157439/jobs/6872950150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-python-sdist,github,{},python-sdist/github.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4004141029/jobs/6873128526', 'https://github.com/ursacomputing/crossbow/actions/runs/4004141029/jobs/6873092477', 'https://github.com/ursacomputing/crossbow/actions/runs/4004141029/jobs/6873092368', 'https://github.com/ursacomputing/crossbow/actions/runs/4004141029/jobs/6872975040', 'https://github.com/ursacomputing/crossbow/actions/runs/4004141029/jobs/6872941552', 'https://github.com/ursacomputing/crossbow/actions/runs/4004141029/jobs/6872941418', 'https://github.com/ursacomputing/crossbow/actions/runs/4004141029/jobs/6872941274', 'https://github.com/ursacomputing/crossbow/actions/runs/4004141029/jobs/6872941128', 'https://github.com/ursacomputing/crossbow/actions/runs/4004141029/jobs/6872940995', 'https://github.com/ursacomputing/crossbow/actions/runs/4004141029/jobs/6872913377']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4004141420/jobs/6872914253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871151006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004160740/jobs/6872957921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871162860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004155444/jobs/6872946022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871138667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004145893/jobs/6872923661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871167077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004147884/jobs/6872927785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004150641/jobs/6872934650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004148340/jobs/6872928997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004163718/jobs/6872964554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004155848/jobs/6872946841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-macos-mojave-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4004153744/jobs/6872942153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004158297/jobs/6872952082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004144410/jobs/6872920350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004165813/jobs/6872969197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004159008/jobs/6872953618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871149090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004153145/jobs/6872940889'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871152458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004151343/jobs/6872936477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871112486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004149390/jobs/6872931628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10871168004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004152104/jobs/6872938203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10871159445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4004144855/jobs/6872921295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4004154739/jobs/6872944307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4004142980/jobs/6872917296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004166573/jobs/6872970904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4004143974/jobs/6872919487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,656c8024f32a8dcca4aa47d527550f7d5204c9f3
diff --git a/csv_reports/nightly-packaging-2023-01-26-0.csv b/csv_reports/nightly-packaging-2023-01-26-0.csv
deleted file mode 100644
index 5817ce3fd2c..00000000000
--- a/csv_reports/nightly-packaging-2023-01-26-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013514379/jobs/6892942013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897352032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013498730/jobs/6892904614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897339757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013511439/jobs/6892935737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897342751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013510594/jobs/6892933430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013499418/jobs/6892906206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897388189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013491705/jobs/6892889125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897391305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013490997/jobs/6892887370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013503827/jobs/6892917338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10900149344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10902456482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10901086637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10903472587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10901985343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10902348055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10902651308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10899975920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10899596815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10900011040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10899976658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10902827175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10900096837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10902685425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10900310522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10900330562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10900228328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10900078576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013500834/jobs/6892910140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897340551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013503115/jobs/6892915831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897325398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013510215/jobs/6892932563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4013497700/jobs/6892902526', 'https://github.com/ursacomputing/crossbow/actions/runs/4013497700/jobs/6892902373', 'https://github.com/ursacomputing/crossbow/actions/runs/4013497700/jobs/6892902220', 'https://github.com/ursacomputing/crossbow/actions/runs/4013497700/jobs/6892902062']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013489921/jobs/6892884983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4013509609/jobs/6893824582', 'https://github.com/ursacomputing/crossbow/actions/runs/4013509609/jobs/6892931518', 'https://github.com/ursacomputing/crossbow/actions/runs/4013509609/jobs/6892931397', 'https://github.com/ursacomputing/crossbow/actions/runs/4013509609/jobs/6892931276', 'https://github.com/ursacomputing/crossbow/actions/runs/4013509609/jobs/6892931122']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-java-jars,github,{},java-jars/github.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013514039/jobs/6892941287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013505956/jobs/6892922250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-python-sdist,github,{},python-sdist/github.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893829974', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893409246', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893409114', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893408975', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893408891', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893408793', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893408646', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893199975', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893120498', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893120351', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893120207', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893120079', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893119981', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893119842', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893119759', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6893119598', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6892898770', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6892898649', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6892898551', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6892898256', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6892898107', 'https://github.com/ursacomputing/crossbow/actions/runs/4013491439/jobs/6892888470']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013493031/jobs/6892892186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897343550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013508926/jobs/6892929868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897333577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013492332/jobs/6892890648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897394864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013499823/jobs/6892907166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897392118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013490251/jobs/6892885715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013503450/jobs/6892916542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013502800/jobs/6892915090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013506761/jobs/6892924483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013511169/jobs/6892935002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013501852/jobs/6892912946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013500485/jobs/6892909200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013493858/jobs/6892894043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013511768/jobs/6892936632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013495371/jobs/6892897209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897346602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013504870/jobs/6892919765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897335491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013515326/jobs/6892944400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897337593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013492014/jobs/6892889780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10897373201'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013497968/jobs/6892902832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/10897368105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013510870/jobs/6892934081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013501153/jobs/6892911074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013502461/jobs/6892914363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013505274/jobs/6892920623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,295c6644ca6b67c95a662410b2c7faea0920c989
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4013509936/jobs/6892932011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-26-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,295c6644ca6b67c95a662410b2c7faea0920c989
diff --git a/csv_reports/nightly-packaging-2023-01-27-0.csv b/csv_reports/nightly-packaging-2023-01-27-0.csv
deleted file mode 100644
index 64049525458..00000000000
--- a/csv_reports/nightly-packaging-2023-01-27-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022837853/jobs/6913002917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923629004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022844988/jobs/6913020376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923622092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022835769/jobs/6912997899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923663316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022835411/jobs/6912996946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022834427/jobs/6912994522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923639000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022824454/jobs/6912970380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923635774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022831113/jobs/6912987072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022839539/jobs/6913007649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10923707133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/10929225420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10926281903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10928176034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10925585738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10925548083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10925614480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10925583256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10925412268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10927954938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10929364321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10928987134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10926434342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10929065062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10926772692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10926453770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10927023697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10928168308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022843031/jobs/6913016022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923618974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022832561/jobs/6912990424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923682530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022829953/jobs/6912983900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4022825041/jobs/6912972234', 'https://github.com/ursacomputing/crossbow/actions/runs/4022825041/jobs/6912972066', 'https://github.com/ursacomputing/crossbow/actions/runs/4022825041/jobs/6912971912', 'https://github.com/ursacomputing/crossbow/actions/runs/4022825041/jobs/6912971755']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022829282/jobs/6912982054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4022838506/jobs/6913901885', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838506/jobs/6913005062', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838506/jobs/6913004936', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838506/jobs/6913004790', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838506/jobs/6913004630']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-java-jars,github,{},java-jars/github.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022826370/jobs/6912974804'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022831812/jobs/6912988673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-python-sdist,github,{},python-sdist/github.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6914401138', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913996171', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913996048', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913995921', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913995797', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913995684', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913995503', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913425095', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913324486', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913324405', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913324320', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913324225', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913324146', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913324061', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913323972', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913323858', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913013918', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913013788', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913013683', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913013585', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913013450', 'https://github.com/ursacomputing/crossbow/actions/runs/4022838160/jobs/6913003812']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022835033/jobs/6912996154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923680695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022833757/jobs/6912992860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923619923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022842646/jobs/6913015188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923678769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022839844/jobs/6913008371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923681480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022830567/jobs/6912985550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022843333/jobs/6913016621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022843960/jobs/6913018071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022826004/jobs/6912974004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022844468/jobs/6913019126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022844650/jobs/6913019655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022831484/jobs/6912987929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022828866/jobs/6912981015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022821697/jobs/6912964448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022845715/jobs/6913022063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923637816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022832896/jobs/6912991083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923626736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022840075/jobs/6913008985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923685741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022825727/jobs/6912973329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923623821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022834044/jobs/6912993648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10923667237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022841445/jobs/6913012287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022820664/jobs/6912962085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022838833/jobs/6913005589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022825434/jobs/6912972698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,24da3be9560c5ee4eddbd62a815af553902504b8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4022840766/jobs/6913010681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-27-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,24da3be9560c5ee4eddbd62a815af553902504b8
diff --git a/csv_reports/nightly-packaging-2023-01-28-0.csv b/csv_reports/nightly-packaging-2023-01-28-0.csv
deleted file mode 100644
index b8989716cfd..00000000000
--- a/csv_reports/nightly-packaging-2023-01-28-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030996144/jobs/6930025531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945829328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030993413/jobs/6930020450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945805268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030992320/jobs/6930018186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945822732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030998751/jobs/6930030261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030995564/jobs/6930024310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945819571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030990578/jobs/6930014678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945829774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030986293/jobs/6930005004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030988656/jobs/6930009964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10946685066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10946768524'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/10947870046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10946891835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10947280063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10947262068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10946580446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10946446233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10946415769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10946552793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10946641794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10946736207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10946665929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10946924013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10947534154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10947535393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10948100546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10947294469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030994479/jobs/6930022458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945812998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030992753/jobs/6930019010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945815442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030995384/jobs/6930023908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4030986025/jobs/6930004547', 'https://github.com/ursacomputing/crossbow/actions/runs/4030986025/jobs/6930004492', 'https://github.com/ursacomputing/crossbow/actions/runs/4030986025/jobs/6930004430', 'https://github.com/ursacomputing/crossbow/actions/runs/4030986025/jobs/6930004381']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030998914/jobs/6930030505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4030993547/jobs/6930261060', 'https://github.com/ursacomputing/crossbow/actions/runs/4030993547/jobs/6930020956', 'https://github.com/ursacomputing/crossbow/actions/runs/4030993547/jobs/6930020892', 'https://github.com/ursacomputing/crossbow/actions/runs/4030993547/jobs/6930020832', 'https://github.com/ursacomputing/crossbow/actions/runs/4030993547/jobs/6930020783']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-java-jars,github,{},java-jars/github.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030999332/jobs/6930031090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030990158/jobs/6930013581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-python-sdist,github,{},python-sdist/github.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930340714', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930193452', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930193418', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930193379', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930193325', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930193282', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930193228', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930105313', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930076140', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930076107', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930076054', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930076008', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930075975', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930075940', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930075904', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930075858', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930020497', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930020437', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930020374', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930020333', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930020270', 'https://github.com/ursacomputing/crossbow/actions/runs/4030991103/jobs/6930015977']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030993666/jobs/6930021071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945811927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030996305/jobs/6930025830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945803397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030988333/jobs/6930009069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945803117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030992928/jobs/6930019457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945825500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030995869/jobs/6930024991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030998573/jobs/6930030001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030998272/jobs/6930029442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030991970/jobs/6930017643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030986164/jobs/6930004673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030997071/jobs/6930027140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030987196/jobs/6930006584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030986859/jobs/6930006011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030989185/jobs/6930011591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4030991574/jobs/6930016979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945828964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030999115/jobs/6930030762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945809267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030987758/jobs/6930007599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945827376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030992567/jobs/6930018655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945833821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030995204/jobs/6930023619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10945821847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030997315/jobs/6930027457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030989057/jobs/6930011229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030990916/jobs/6930015499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030999884/jobs/6930031930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4030991431/jobs/6930016686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-28-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
diff --git a/csv_reports/nightly-packaging-2023-01-29-0.csv b/csv_reports/nightly-packaging-2023-01-29-0.csv
deleted file mode 100644
index 32ae50e44a2..00000000000
--- a/csv_reports/nightly-packaging-2023-01-29-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035931041/jobs/6938168520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955401363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035930838/jobs/6938168112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955395058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035938496/jobs/6938182459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955405701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035927802/jobs/6938161673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035937552/jobs/6938180400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955413268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035928031/jobs/6938162187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955397015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035938664/jobs/6938182762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035932729/jobs/6938171708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10956342042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10957369211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10956369230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10956324140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10956246673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10956951964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10956269117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/10955442069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10956885311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10956182009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10956276364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10957030369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10956339487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10957671793'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10956472958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10957168253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10956408336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10956565176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035936572/jobs/6938178667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955406973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035934950/jobs/6938175818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955415964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035932877/jobs/6938172080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4035925231/jobs/6938155784', 'https://github.com/ursacomputing/crossbow/actions/runs/4035925231/jobs/6938155709', 'https://github.com/ursacomputing/crossbow/actions/runs/4035925231/jobs/6938155635', 'https://github.com/ursacomputing/crossbow/actions/runs/4035925231/jobs/6938155562']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035933065/jobs/6938172485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4035932346/jobs/6938468099', 'https://github.com/ursacomputing/crossbow/actions/runs/4035932346/jobs/6938171170', 'https://github.com/ursacomputing/crossbow/actions/runs/4035932346/jobs/6938171087', 'https://github.com/ursacomputing/crossbow/actions/runs/4035932346/jobs/6938171021', 'https://github.com/ursacomputing/crossbow/actions/runs/4035932346/jobs/6938170951']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-java-jars,github,{},java-jars/github.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035936849/jobs/6938179187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035930550/jobs/6938167378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-python-sdist,github,{},python-sdist/github.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938606827', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938457235', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938457197', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938457154', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938457124', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938457090', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938457040', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938288766', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938247914', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938247875', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938247826', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938247777', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938247738', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938247686', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938247637', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938247575', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938185532', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938185492', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938185459', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938185419', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938185374', 'https://github.com/ursacomputing/crossbow/actions/runs/4035938333/jobs/6938182061']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035933654/jobs/6938173592'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955412959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035925438/jobs/6938156069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955420357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035939089/jobs/6938183570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955393285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035925818/jobs/6938157245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955408304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035926006/jobs/6938157659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035928978/jobs/6938164130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035929687/jobs/6938165410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035935349/jobs/6938176583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035935165/jobs/6938176243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035934717/jobs/6938175417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035934578/jobs/6938175183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035938941/jobs/6938183360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035926604/jobs/6938158810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4035937937/jobs/6938181277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955404841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035928240/jobs/6938162812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955421259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035929197/jobs/6938164536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955423850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035932118/jobs/6938170502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955418921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035940210/jobs/6938185244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10955409701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035935978/jobs/6938177663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035930236/jobs/6938166572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4035939533/jobs/6938184230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035928562/jobs/6938163461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4035935782/jobs/6938177279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-29-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4f1d255f3dc57457e5c78d98c4b76fc523cf9961
diff --git a/csv_reports/nightly-packaging-2023-01-30-0.csv b/csv_reports/nightly-packaging-2023-01-30-0.csv
deleted file mode 100644
index ef9da494c7b..00000000000
--- a/csv_reports/nightly-packaging-2023-01-30-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041997150/jobs/6949172372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968643679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041981567/jobs/6949138726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968674516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041991087/jobs/6949158404'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968717932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041996105/jobs/6949169869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041997462/jobs/6949173121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968634249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041985587/jobs/6949147463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968676396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4042000606/jobs/6949180801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041997888/jobs/6949174098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10971914927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10976284925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10974401491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10972650106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10974485082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10970864673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10971583179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10970907066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10974389483'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10971150938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10972065317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10971717836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10974404016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10975851507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10974764447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/10971857364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10972998053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,4acf7c17689c926841a5a471828970eda2f496c5
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/10972700659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4acf7c17689c926841a5a471828970eda2f496c5
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041992858/jobs/6949162361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968672968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041981308/jobs/6949137955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968709729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4042003793/jobs/6949188451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4acf7c17689c926841a5a471828970eda2f496c5
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4041990718/jobs/6949157997', 'https://github.com/ursacomputing/crossbow/actions/runs/4041990718/jobs/6949157850', 'https://github.com/ursacomputing/crossbow/actions/runs/4041990718/jobs/6949157698', 'https://github.com/ursacomputing/crossbow/actions/runs/4041990718/jobs/6949157573']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4acf7c17689c926841a5a471828970eda2f496c5
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041987531/jobs/6949151346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4acf7c17689c926841a5a471828970eda2f496c5
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4042003329/jobs/6950368144', 'https://github.com/ursacomputing/crossbow/actions/runs/4042003329/jobs/6949187810', 'https://github.com/ursacomputing/crossbow/actions/runs/4042003329/jobs/6949187677', 'https://github.com/ursacomputing/crossbow/actions/runs/4042003329/jobs/6949187539', 'https://github.com/ursacomputing/crossbow/actions/runs/4042003329/jobs/6949187399']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-java-jars,github,{},java-jars/github.yml,4acf7c17689c926841a5a471828970eda2f496c5
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041978640/jobs/6949132080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4acf7c17689c926841a5a471828970eda2f496c5
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041979777/jobs/6949134301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-python-sdist,github,{},python-sdist/github.yml,4acf7c17689c926841a5a471828970eda2f496c5
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6950211591', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949708378', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949708189', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949708059', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949707926', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949707820', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949707621', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949447666', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949358320', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949358200', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949358059', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949357896', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949357664', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949357544', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949357403', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949357204', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949189606', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949189392', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949189244', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949189067', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949188898', 'https://github.com/ursacomputing/crossbow/actions/runs/4041999961/jobs/6949179081']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4acf7c17689c926841a5a471828970eda2f496c5
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041995278/jobs/6949167783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968699962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041996446/jobs/6949170659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968712302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041989307/jobs/6949155088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968648019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041992242/jobs/6949161125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968714904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041994548/jobs/6949166021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041986704/jobs/6949149818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041984810/jobs/6949145744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041987197/jobs/6949150741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041993112/jobs/6949162882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041981888/jobs/6949139819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4042006868/jobs/6949195823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041991866/jobs/6949160153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041999538/jobs/6949177906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4041979373/jobs/6949133486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968710537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4042004567/jobs/6949190300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968713957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041988112/jobs/6949152505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968647054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041980927/jobs/6949136999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968659998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041983209/jobs/6949142480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10968645182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041980497/jobs/6949136244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041985202/jobs/6949146657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041989840/jobs/6949155998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4042002113/jobs/6949184628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4acf7c17689c926841a5a471828970eda2f496c5
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4041995715/jobs/6949168791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-30-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4acf7c17689c926841a5a471828970eda2f496c5
diff --git a/csv_reports/nightly-packaging-2023-01-31-0.csv b/csv_reports/nightly-packaging-2023-01-31-0.csv
deleted file mode 100644
index eafff7bfce3..00000000000
--- a/csv_reports/nightly-packaging-2023-01-31-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052183596/jobs/6971306418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997630126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052215683/jobs/6971382594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997689172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052216817/jobs/6971385136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997711862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052196976/jobs/6971337826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4052197350/jobs/6971338865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997666885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052191233/jobs/6971323673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997656228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052211707/jobs/6971373755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052215254/jobs/6971381632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/10997699595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11000857605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11004500281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11004438869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11000541604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11003720716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/10999983155'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/10999946111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11003322347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11000463302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11000943555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11003250671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11001009234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11001339489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11001312772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11003840488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-win-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11005026081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,64a48c99934555fe35a69066608328635ed62dad
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11000767051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,64a48c99934555fe35a69066608328635ed62dad
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052191632/jobs/6971324558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997677204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052194352/jobs/6971331080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997696529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052198108/jobs/6971340805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,64a48c99934555fe35a69066608328635ed62dad
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4052193411/jobs/6971329218', 'https://github.com/ursacomputing/crossbow/actions/runs/4052193411/jobs/6971329066', 'https://github.com/ursacomputing/crossbow/actions/runs/4052193411/jobs/6971328915', 'https://github.com/ursacomputing/crossbow/actions/runs/4052193411/jobs/6971328710']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,64a48c99934555fe35a69066608328635ed62dad
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052212158/jobs/6971374593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,64a48c99934555fe35a69066608328635ed62dad
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4052190428/jobs/6972446593', 'https://github.com/ursacomputing/crossbow/actions/runs/4052190428/jobs/6971322333', 'https://github.com/ursacomputing/crossbow/actions/runs/4052190428/jobs/6971322172', 'https://github.com/ursacomputing/crossbow/actions/runs/4052190428/jobs/6971322021', 'https://github.com/ursacomputing/crossbow/actions/runs/4052190428/jobs/6971321807']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-java-jars,github,{},java-jars/github.yml,64a48c99934555fe35a69066608328635ed62dad
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052192033/jobs/6971325504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,64a48c99934555fe35a69066608328635ed62dad
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052214179/jobs/6971379221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-python-sdist,github,{},python-sdist/github.yml,64a48c99934555fe35a69066608328635ed62dad
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6972869774', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6972423215', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6972423061', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6972422913', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6972422795', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6972422652', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6972422458', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971707966', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971613179', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971613058', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971612913', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971612781', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971612655', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971612549', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971612407', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971612209', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971364880', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971364741', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971364592', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971364415', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971364235', 'https://github.com/ursacomputing/crossbow/actions/runs/4052202724/jobs/6971352046']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,64a48c99934555fe35a69066608328635ed62dad
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052182340/jobs/6971303601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997719990'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052184277/jobs/6971308202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997628884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052183203/jobs/6971305452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997694019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052213733/jobs/6971378266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997683006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052187000/jobs/6971314336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052212575/jobs/6971375485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052205076/jobs/6971357712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052199290/jobs/6971343502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052212983/jobs/6971376563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052188288/jobs/6971317125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052186674/jobs/6971313631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052187829/jobs/6971316171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052207559/jobs/6971364087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4052182756/jobs/6971304419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997716438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052189089/jobs/6971318842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997688115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052210206/jobs/6971370041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997685533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4052193819/jobs/6971329620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997627756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4052203315/jobs/6971353314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/10997715388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052189510/jobs/6971319921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052206759/jobs/6971362278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052187411/jobs/6971315236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052206430/jobs/6971361533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,64a48c99934555fe35a69066608328635ed62dad
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4052190869/jobs/6971322843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-01-31-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,64a48c99934555fe35a69066608328635ed62dad
diff --git a/csv_reports/nightly-packaging-2023-02-01-0.csv b/csv_reports/nightly-packaging-2023-02-01-0.csv
deleted file mode 100644
index 5db4a96a7b6..00000000000
--- a/csv_reports/nightly-packaging-2023-02-01-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062432371/jobs/6993485770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026938716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062431673/jobs/6993484219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026862488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062439165/jobs/6993501165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026892700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062410735/jobs/6993434980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062416991/jobs/6993449498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026966485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062421208/jobs/6993458983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026946797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062434818/jobs/6993491878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062447230/jobs/6993519747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11026988378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11030009508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11032265678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11030077732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11032504623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11029090015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11030358884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11030385188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11029143851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11033398303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11030280297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11030542491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11033926964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11030890723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11033093548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11034237061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11032048808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11033533247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062414520/jobs/6993443244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026942202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062413474/jobs/6993441099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026958810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062442870/jobs/6993509864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4062420339/jobs/6993458329', 'https://github.com/ursacomputing/crossbow/actions/runs/4062420339/jobs/6993458103', 'https://github.com/ursacomputing/crossbow/actions/runs/4062420339/jobs/6993457942', 'https://github.com/ursacomputing/crossbow/actions/runs/4062420339/jobs/6993457772']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062441627/jobs/6993507285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4062425855/jobs/6994576415', 'https://github.com/ursacomputing/crossbow/actions/runs/4062425855/jobs/6993470665', 'https://github.com/ursacomputing/crossbow/actions/runs/4062425855/jobs/6993470489', 'https://github.com/ursacomputing/crossbow/actions/runs/4062425855/jobs/6993470312', 'https://github.com/ursacomputing/crossbow/actions/runs/4062425855/jobs/6993470176']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-java-jars,github,{},java-jars/github.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062420765/jobs/6993458497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4062411170/jobs/6993436033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-python-sdist,github,{},python-sdist/github.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6995606064', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6995102962', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6995102719', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6995102542', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6995102331', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6995102135', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6995101794', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993941194', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993819901', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993819745', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993819626', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993819474', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993819313', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993819136', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993818996', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993818830', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993489418', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993489263', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993489102', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993488945', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993488659', 'https://github.com/ursacomputing/crossbow/actions/runs/4062427950/jobs/6993475128']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062436048/jobs/6993494553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026941040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062444317/jobs/6993513301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026944696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062425324/jobs/6993468475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026861538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062442014/jobs/6993508088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026937462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062413991/jobs/6993442133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062424742/jobs/6993466633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062444998/jobs/6993514811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062412976/jobs/6993439998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062426442/jobs/6993471589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062447659/jobs/6993520657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062440936/jobs/6993505573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062423920/jobs/6993464757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062432013/jobs/6993484878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062446873/jobs/6993519209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026869924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062410451/jobs/6993434386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026872528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062419469/jobs/6993454648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026927128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062429969/jobs/6993479905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026889135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4062430354/jobs/6993480926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11026890501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062443309/jobs/6993510737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062427114/jobs/6993473270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062433012/jobs/6993487372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062420021/jobs/6993457404'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4062437201/jobs/6993496994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5765aa29b5ca93dae1a5fe8c7efce05dcd9f73c8
diff --git a/csv_reports/nightly-packaging-2023-02-02-0.csv b/csv_reports/nightly-packaging-2023-02-02-0.csv
deleted file mode 100644
index 6fbcc6ed224..00000000000
--- a/csv_reports/nightly-packaging-2023-02-02-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072656212/jobs/7015653522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055945236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072651191/jobs/7015642039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055953199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072663115/jobs/7015669589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055987352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072654528/jobs/7015649443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072641864/jobs/7015621010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055958018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072648373/jobs/7015635203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055948270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072662219/jobs/7015667518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072648943/jobs/7015636544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11056018877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11062127094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11061872761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11061598269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11061412956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11061611203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11058720171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11058277031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11058132378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11058720982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11058804227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11062035156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11058879126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11059464989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11059628275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11059644667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11062226097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-conda-win-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11058928194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072653228/jobs/7015646345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055929632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072668497/jobs/7015682499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055961470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072643513/jobs/7015624342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4072644951/jobs/7015628326', 'https://github.com/ursacomputing/crossbow/actions/runs/4072644951/jobs/7015628232', 'https://github.com/ursacomputing/crossbow/actions/runs/4072644951/jobs/7015628111', 'https://github.com/ursacomputing/crossbow/actions/runs/4072644951/jobs/7015627975']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072657765/jobs/7015657312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4072653525/jobs/7016764882', 'https://github.com/ursacomputing/crossbow/actions/runs/4072653525/jobs/7015647393', 'https://github.com/ursacomputing/crossbow/actions/runs/4072653525/jobs/7015647264', 'https://github.com/ursacomputing/crossbow/actions/runs/4072653525/jobs/7015647144', 'https://github.com/ursacomputing/crossbow/actions/runs/4072653525/jobs/7015647044']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-java-jars,github,{},java-jars/github.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072652065/jobs/7015643842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072669167/jobs/7015684118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-python-sdist,github,{},python-sdist/github.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7017202723', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7016753583', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7016753421', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7016753261', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7016753122', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7016752979', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7016752805', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7016049768', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015951629', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015951509', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015951392', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015951228', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015951052', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015950920', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015950817', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015950666', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015641424', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015641317', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015641209', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015641060', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015640845', 'https://github.com/ursacomputing/crossbow/actions/runs/4072646387/jobs/7015631370']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072646862/jobs/7015632163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055902520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072647838/jobs/7015634162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055935852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072650832/jobs/7015641212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055969829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072652801/jobs/7015645466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055911630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072642535/jobs/7015622450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072640884/jobs/7015619043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072647370/jobs/7015633126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072644211/jobs/7015626410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072649592/jobs/7015638217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072654839/jobs/7015650547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072668115/jobs/7015681587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072657388/jobs/7015656375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072665279/jobs/7015675180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072645279/jobs/7015628760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055978951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072641377/jobs/7015620037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055913482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072663533/jobs/7015670504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055971989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072664120/jobs/7015672329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055917052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072666018/jobs/7015676893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11055909079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072649357/jobs/7015637513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072645969/jobs/7015630377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072650448/jobs/7015640458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072654258/jobs/7015648727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4072655897/jobs/7015652780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-02-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b413ac4f2b6911af5e8241803277caccc43aa3c4
diff --git a/csv_reports/nightly-packaging-2023-02-04-0.csv b/csv_reports/nightly-packaging-2023-02-04-0.csv
deleted file mode 100644
index 39310a1d644..00000000000
--- a/csv_reports/nightly-packaging-2023-02-04-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090787807/jobs/7054440158'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106960878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090779267/jobs/7054422851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106974601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090788616/jobs/7054441662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106969379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090781086/jobs/7054426981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090792729/jobs/7054449235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106963083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090778588/jobs/7054420779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106967286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090786649/jobs/7054438256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090781450/jobs/7054427827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11107758544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11108108943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11108987478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11108805652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11108416179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11108692446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11107625909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11107738938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11107733231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11107715936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11108449229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11107768030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11107831192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11108787231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11108005504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11107823826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11107972741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11108691843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4090780615/jobs/7054426006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11106971147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090780051/jobs/7054424616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106961097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090789551/jobs/7054443395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4090788479/jobs/7054441482', 'https://github.com/ursacomputing/crossbow/actions/runs/4090788479/jobs/7054441437', 'https://github.com/ursacomputing/crossbow/actions/runs/4090788479/jobs/7054441402', 'https://github.com/ursacomputing/crossbow/actions/runs/4090788479/jobs/7054441355']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090790138/jobs/7054444449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4090788796/jobs/7054683407', 'https://github.com/ursacomputing/crossbow/actions/runs/4090788796/jobs/7054442192', 'https://github.com/ursacomputing/crossbow/actions/runs/4090788796/jobs/7054442140', 'https://github.com/ursacomputing/crossbow/actions/runs/4090788796/jobs/7054442101', 'https://github.com/ursacomputing/crossbow/actions/runs/4090788796/jobs/7054442041']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-java-jars,github,{},java-jars/github.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090778973/jobs/7054421866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090791972/jobs/7054447757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-python-sdist,github,{},python-sdist/github.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7055003220', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054851796', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054851767', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054851742', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054851717', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054851690', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054851663', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054593294', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054551812', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054551786', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054551769', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054551751', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054551727', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054551704', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054551681', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054551649', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054440308', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054440262', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054440224', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054440175', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054440109', 'https://github.com/ursacomputing/crossbow/actions/runs/4090785239/jobs/7054435466']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090786002/jobs/7054437000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106956698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090791575/jobs/7054447135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106976281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090783289/jobs/7054431753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106965523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090789132/jobs/7054442649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106957273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090780824/jobs/7054426426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090779090/jobs/7054422321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090785589/jobs/7054436185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090786887/jobs/7054438607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090785808/jobs/7054436606'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090779834/jobs/7054424119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090789331/jobs/7054443003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090778148/jobs/7054419777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090781716/jobs/7054428599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090786533/jobs/7054438003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106961869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4090790434/jobs/7054445054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106958356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090787974/jobs/7054440430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106954419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090781932/jobs/7054429047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106961468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4090786404/jobs/7054437728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11106975828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090784677/jobs/7054434552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4090785406/jobs/7054435819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090791059/jobs/7054446179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090789757/jobs/7054443692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4090788277/jobs/7054441007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-04-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b56b91e1ef4ca5cc9b7eca65f77cb9d78044b0a0
diff --git a/csv_reports/nightly-packaging-2023-02-05-0.csv b/csv_reports/nightly-packaging-2023-02-05-0.csv
deleted file mode 100644
index c9820279624..00000000000
--- a/csv_reports/nightly-packaging-2023-02-05-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095741949/jobs/7062873829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116912956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095746195/jobs/7062883773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116936691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095744879/jobs/7062880999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116922850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095749466/jobs/7062890699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095745522/jobs/7062882359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116939176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095753713/jobs/7062898934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116916091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095752313/jobs/7062896038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095742656/jobs/7062875468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11117841908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11118592880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11117825998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11118082987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11117780634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11117498663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11117737427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11117653762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11118562160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11118693569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11117794941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11118825779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11117867091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11118869087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11117950495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11118718084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11117959812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,8233ed4545212fb086d60715c80257e755b9a192
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11119072543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,8233ed4545212fb086d60715c80257e755b9a192
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4095748300/jobs/7062888137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11116926972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095748682/jobs/7062889032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116929535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095753264/jobs/7062897922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,8233ed4545212fb086d60715c80257e755b9a192
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4095742455/jobs/7062875248', 'https://github.com/ursacomputing/crossbow/actions/runs/4095742455/jobs/7062875159', 'https://github.com/ursacomputing/crossbow/actions/runs/4095742455/jobs/7062875078', 'https://github.com/ursacomputing/crossbow/actions/runs/4095742455/jobs/7062875013']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,8233ed4545212fb086d60715c80257e755b9a192
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095743394/jobs/7062877160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,8233ed4545212fb086d60715c80257e755b9a192
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4095746732/jobs/7063143944', 'https://github.com/ursacomputing/crossbow/actions/runs/4095746732/jobs/7062885221', 'https://github.com/ursacomputing/crossbow/actions/runs/4095746732/jobs/7062885153', 'https://github.com/ursacomputing/crossbow/actions/runs/4095746732/jobs/7062885088', 'https://github.com/ursacomputing/crossbow/actions/runs/4095746732/jobs/7062884977']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-java-jars,github,{},java-jars/github.yml,8233ed4545212fb086d60715c80257e755b9a192
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095744707/jobs/7062880562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,8233ed4545212fb086d60715c80257e755b9a192
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095747504/jobs/7062886643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-python-sdist,github,{},python-sdist/github.yml,8233ed4545212fb086d60715c80257e755b9a192
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7063251249', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7063094769', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7063094700', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7063094647', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7063094602', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7063094543', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7063094452', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062990659', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062954248', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062954226', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062954208', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062954181', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062954157', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062954126', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062954085', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062954044', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062896410', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062896365', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062896322', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062896278', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062896223', 'https://github.com/ursacomputing/crossbow/actions/runs/4095750269/jobs/7062892226']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,8233ed4545212fb086d60715c80257e755b9a192
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095747879/jobs/7062887335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116926590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095753556/jobs/7062898605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116928650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095741749/jobs/7062873476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116921185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095744401/jobs/7062879818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116927320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095753878/jobs/7062899281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095743192/jobs/7062876591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095747056/jobs/7062885766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095749220/jobs/7062890220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095748512/jobs/7062888622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095747661/jobs/7062886978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095742265/jobs/7062874548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095753049/jobs/7062897513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095753437/jobs/7062898308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095751446/jobs/7062894334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116929907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095751770/jobs/7062895050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116938463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095744578/jobs/7062880260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116938855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095752691/jobs/7062896759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116929107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095754556/jobs/7062900769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11116926305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095744066/jobs/7062879076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095746548/jobs/7062884583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095743573/jobs/7062877713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095741573/jobs/7062873160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,8233ed4545212fb086d60715c80257e755b9a192
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4095751963/jobs/7062895382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-05-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,8233ed4545212fb086d60715c80257e755b9a192
diff --git a/csv_reports/nightly-packaging-2023-02-06-0.csv b/csv_reports/nightly-packaging-2023-02-06-0.csv
deleted file mode 100644
index 564b440a9b4..00000000000
--- a/csv_reports/nightly-packaging-2023-02-06-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101776388/jobs/7073935684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130332867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101806246/jobs/7074005732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130292796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101779300/jobs/7073942410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130343296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-centos-7-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101784498/jobs/7073953751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101803526/jobs/7073999066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130302802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101778248/jobs/7073940380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130262419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101804788/jobs/7074002303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101793999/jobs/7073975709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11133922263'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11133901098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11136201725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11135478707'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11132638152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11132725452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11134578237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11132695277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11135895406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11136027259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11133192992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11137210851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11133386614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11133808189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11133853065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11135477864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11134753423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11134146262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101791170/jobs/7073968420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130260093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101808321/jobs/7074010594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130295094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101789390/jobs/7073964506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4101781469/jobs/7073947734', 'https://github.com/ursacomputing/crossbow/actions/runs/4101781469/jobs/7073947557', 'https://github.com/ursacomputing/crossbow/actions/runs/4101781469/jobs/7073947415', 'https://github.com/ursacomputing/crossbow/actions/runs/4101781469/jobs/7073947280']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101781870/jobs/7073948265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4101801517/jobs/7074838452', 'https://github.com/ursacomputing/crossbow/actions/runs/4101801517/jobs/7073994750', 'https://github.com/ursacomputing/crossbow/actions/runs/4101801517/jobs/7073994604', 'https://github.com/ursacomputing/crossbow/actions/runs/4101801517/jobs/7073994473', 'https://github.com/ursacomputing/crossbow/actions/runs/4101801517/jobs/7073994339']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-java-jars,github,{},java-jars/github.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101800030/jobs/7073990863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101783660/jobs/7073952164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-python-sdist,github,{},python-sdist/github.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7075451378', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074570768', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074570622', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074570411', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074570227', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074569954', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074569753', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074416432', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074125527', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074125407', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074125292', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074125134', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074125028', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074124905', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074124802', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7074124628', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7073981592', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7073981415', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7073981242', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7073981081', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7073980918', 'https://github.com/ursacomputing/crossbow/actions/runs/4101790720/jobs/7073967381']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101781036/jobs/7073946318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130282939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101784051/jobs/7073952923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130281785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101797360/jobs/7073984668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130286630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101809087/jobs/7074012259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130285845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101793299/jobs/7073973953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101782741/jobs/7073950117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101795151/jobs/7073978689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101812498/jobs/7074019888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101794479/jobs/7073976879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101782245/jobs/7073949145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101791567/jobs/7073969492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101795564/jobs/7073979881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101796065/jobs/7073981152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101796767/jobs/7073982980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130291561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101780278/jobs/7073944512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130347758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101774760/jobs/7073931976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130261809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101790252/jobs/7073966296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130358834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4101783118/jobs/7073950968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11130263649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101793639/jobs/7073974906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101775519/jobs/7073933683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101794840/jobs/7073977904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101809847/jobs/7074014043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4101798641/jobs/7073987639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-06-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,0074a6612becdec3ef9742d0f76a9bf323d378d3
diff --git a/csv_reports/nightly-packaging-2023-02-07-0.csv b/csv_reports/nightly-packaging-2023-02-07-0.csv
deleted file mode 100644
index 2343e84c761..00000000000
--- a/csv_reports/nightly-packaging-2023-02-07-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111985444/jobs/7096356205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159731184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111975901/jobs/7096332722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159749595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4112019010/jobs/7096431112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159733398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4112015305/jobs/7096423212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111977956/jobs/7096337283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159737658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111976825/jobs/7096334470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159775146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111987806/jobs/7096362042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111984188/jobs/7096353235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11159734052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11165894523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11165832746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11162740913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11162114452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11165346543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11161756678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11164899503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11162451049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11164371423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11162718152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11162841330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11166366309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11166176583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11163706045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11162947947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11163065383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11164028044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4112001743/jobs/7096395134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11159765755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4112016834/jobs/7096426441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159785171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111977526/jobs/7096336117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4111979601/jobs/7096341686', 'https://github.com/ursacomputing/crossbow/actions/runs/4111979601/jobs/7096341556', 'https://github.com/ursacomputing/crossbow/actions/runs/4111979601/jobs/7096341429', 'https://github.com/ursacomputing/crossbow/actions/runs/4111979601/jobs/7096341281']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111970241/jobs/7096320012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4112007239/jobs/7097210239', 'https://github.com/ursacomputing/crossbow/actions/runs/4112007239/jobs/7096406837', 'https://github.com/ursacomputing/crossbow/actions/runs/4112007239/jobs/7096406715', 'https://github.com/ursacomputing/crossbow/actions/runs/4112007239/jobs/7096406541', 'https://github.com/ursacomputing/crossbow/actions/runs/4112007239/jobs/7096406391']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-java-jars,github,{},java-jars/github.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4111978905/jobs/7096339656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111975167/jobs/7096331258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-python-sdist,github,{},python-sdist/github.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7097500195', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7097023526', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7097023382', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7097023241', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7097023054', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7097022871', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7097022614', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096719442', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096593938', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096593812', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096593692', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096593577', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096593448', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096593311', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096593164', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096592980', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096434142', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096433972', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096433844', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096433697', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096433530', 'https://github.com/ursacomputing/crossbow/actions/runs/4112014546/jobs/7096421716']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4112020655/jobs/7096434543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159770556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111968819/jobs/7096316833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159741026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111986776/jobs/7096359400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159706407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111984588/jobs/7096354156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159793847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4112008914/jobs/7096409458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111972322/jobs/7096324416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111978527/jobs/7096338709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111989884/jobs/7096367488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4112011309/jobs/7096414517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111998303/jobs/7096387672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111993120/jobs/7096375528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4112000773/jobs/7096393292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111994413/jobs/7096378598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111981292/jobs/7096344987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159671781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111992006/jobs/7096372726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159791549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111983278/jobs/7096350857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159713969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111980454/jobs/7096343046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159806810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4111973654/jobs/7096327562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11159800283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4112008287/jobs/7096408058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4112009738/jobs/7096411120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111995272/jobs/7096380464'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111987101/jobs/7096360235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4111989160/jobs/7096365738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-07-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d1e5cb55152ab468092e0c126b1ed987a09ba487
diff --git a/csv_reports/nightly-packaging-2023-02-08-0.csv b/csv_reports/nightly-packaging-2023-02-08-0.csv
deleted file mode 100644
index 2320e23e044..00000000000
--- a/csv_reports/nightly-packaging-2023-02-08-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122257847/jobs/7118823395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189400168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122239850/jobs/7118780632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189421915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122226963/jobs/7118752256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189407320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122230520/jobs/7118760216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122240856/jobs/7118783582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189376376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122243971/jobs/7118790306'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189394520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122232637/jobs/7118764503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122228116/jobs/7118754472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11197573523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-linux-aarch64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11189428424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-linux-aarch64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11189363491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-linux-aarch64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11189393254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-linux-ppc64le-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11189389283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-linux-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11189372224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-linux-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11189371254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-linux-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11189356638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-linux-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11189420887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-osx-arm64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11189354006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-osx-arm64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11189427369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-osx-arm64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11189360292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-osx-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11189443117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-osx-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11189380307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-osx-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11189442084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-win-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11189385703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-win-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11189364976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,39bad5442c6447bf07594b09e4b29118b3211460
-conda-win-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11189434746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,39bad5442c6447bf07594b09e4b29118b3211460
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4122254092/jobs/7118815431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11189373608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122231928/jobs/7118763121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189408560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122246077/jobs/7118795355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,39bad5442c6447bf07594b09e4b29118b3211460
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4122245260/jobs/7118794043', 'https://github.com/ursacomputing/crossbow/actions/runs/4122245260/jobs/7118793902', 'https://github.com/ursacomputing/crossbow/actions/runs/4122245260/jobs/7118793729', 'https://github.com/ursacomputing/crossbow/actions/runs/4122245260/jobs/7118793572']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,39bad5442c6447bf07594b09e4b29118b3211460
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122249887/jobs/7118805052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,39bad5442c6447bf07594b09e4b29118b3211460
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4122242694/jobs/7119546376', 'https://github.com/ursacomputing/crossbow/actions/runs/4122242694/jobs/7118788161', 'https://github.com/ursacomputing/crossbow/actions/runs/4122242694/jobs/7118788009', 'https://github.com/ursacomputing/crossbow/actions/runs/4122242694/jobs/7118787830', 'https://github.com/ursacomputing/crossbow/actions/runs/4122242694/jobs/7118787645']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-java-jars,github,{},java-jars/github.yml,39bad5442c6447bf07594b09e4b29118b3211460
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4122243526/jobs/7118789444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,39bad5442c6447bf07594b09e4b29118b3211460
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122239369/jobs/7118779515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-python-sdist,github,{},python-sdist/github.yml,39bad5442c6447bf07594b09e4b29118b3211460
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7120561165', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7119387607', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7119387422', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7119387253', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7119387096', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7119386914', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7119385780', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7119075440', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118943443', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118943167', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118942918', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118942758', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118942579', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118942408', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118942247', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118942051', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118788937', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118788740', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118788636', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118788490', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118788278', 'https://github.com/ursacomputing/crossbow/actions/runs/4122238501/jobs/7118777451']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,39bad5442c6447bf07594b09e4b29118b3211460
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122241779/jobs/7118785674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189442910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122245638/jobs/7118794451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189412057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122249499/jobs/7118803870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189367970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122253624/jobs/7118814508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189430466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122257096/jobs/7118821594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122252107/jobs/7118811431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122255011/jobs/7118817393'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122240554/jobs/7118782699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122233588/jobs/7118766425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122235887/jobs/7118771629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122246471/jobs/7118796091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122228898/jobs/7118756233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122235554/jobs/7118770938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122256516/jobs/7118820634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189420679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122244970/jobs/7118792691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189418002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122226552/jobs/7118751265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189423170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122248985/jobs/7118802429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189410775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4122257414/jobs/7118822361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11189396763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122236834/jobs/7118773663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122237985/jobs/7118776144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122230194/jobs/7118759369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122255960/jobs/7118819545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,39bad5442c6447bf07594b09e4b29118b3211460
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4122247666/jobs/7118799119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-08-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,39bad5442c6447bf07594b09e4b29118b3211460
diff --git a/csv_reports/nightly-packaging-2023-02-09-0.csv b/csv_reports/nightly-packaging-2023-02-09-0.csv
deleted file mode 100644
index a2e8e551266..00000000000
--- a/csv_reports/nightly-packaging-2023-02-09-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132390379/jobs/7141024690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218820873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132407137/jobs/7141064765'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218833717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132412272/jobs/7141077071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218774076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132391823/jobs/7141028173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132421981/jobs/7141099009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218792439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132416428/jobs/7141085992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218817972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132415406/jobs/7141083742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132395987/jobs/7141037772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11218879070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11224043729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11222457326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11224661084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11224283002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11221537962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11221738617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11224263893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11220651803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11221435988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11221903612'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11221842505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11222303069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11225272205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11222405631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11227100526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11225552896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11222731929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132421602/jobs/7141098153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218811881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132381921/jobs/7141006786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218758054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132391341/jobs/7141026844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4132397835/jobs/7141042521', 'https://github.com/ursacomputing/crossbow/actions/runs/4132397835/jobs/7141042415', 'https://github.com/ursacomputing/crossbow/actions/runs/4132397835/jobs/7141042288', 'https://github.com/ursacomputing/crossbow/actions/runs/4132397835/jobs/7141042185']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132421100/jobs/7141096899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4132397506/jobs/7141768812', 'https://github.com/ursacomputing/crossbow/actions/runs/4132397506/jobs/7141041945', 'https://github.com/ursacomputing/crossbow/actions/runs/4132397506/jobs/7141041809', 'https://github.com/ursacomputing/crossbow/actions/runs/4132397506/jobs/7141041637', 'https://github.com/ursacomputing/crossbow/actions/runs/4132397506/jobs/7141041456']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-java-jars,github,{},java-jars/github.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132382285/jobs/7141007707'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132383098/jobs/7141009351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-python-sdist,github,{},python-sdist/github.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7142157264', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141690319', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141690147', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141689907', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141689753', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141689577', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141689380', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141234925', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141234725', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141072288', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141072159', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141071971', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141071807', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141071612', 'https://github.com/ursacomputing/crossbow/actions/runs/4132405589/jobs/7141060836']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132417679/jobs/7141089500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218799937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132390897/jobs/7141025770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218849109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132396492/jobs/7141038981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218814809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132389123/jobs/7141022298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218785955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132420461/jobs/7141095539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132393718/jobs/7141032550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132409979/jobs/7141071780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132401037/jobs/7141048587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132381317/jobs/7141005515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132381558/jobs/7141005993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132422381/jobs/7141100095'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132388263/jobs/7141020511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4132415927/jobs/7141084985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132387956/jobs/7141019748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218742051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132404923/jobs/7141059540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218775956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132403465/jobs/7141056221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218740028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132401823/jobs/7141050738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218797785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132388699/jobs/7141021412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11218729978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132413212/jobs/7141079147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132414132/jobs/7141081007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132407591/jobs/7141065961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132395317/jobs/7141036174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4132392191/jobs/7141029161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-09-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4a5fadbb7200ae71a151841bac3cbf35dac10258
diff --git a/csv_reports/nightly-packaging-2023-02-10-0.csv b/csv_reports/nightly-packaging-2023-02-10-0.csv
deleted file mode 100644
index 38fba07f0ab..00000000000
--- a/csv_reports/nightly-packaging-2023-02-10-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142173862/jobs/7162530466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247153981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142172810/jobs/7162527862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247197704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142184855/jobs/7162553600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247191929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142201975/jobs/7162594515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142176956/jobs/7162536525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247156594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142197310/jobs/7162583418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247146533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142191881/jobs/7162569123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142184364/jobs/7162552557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11249715121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11250610859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11253872046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11252397344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11251293501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11252148862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11252250265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11249649018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11248874972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11252415499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11249849959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11250051947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11252764676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11250340654'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11250898749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11250722207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11249992357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11249931989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142182031/jobs/7162547165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247150634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142192585/jobs/7162571320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247215692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142173147/jobs/7162528696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4142199546/jobs/7162588960', 'https://github.com/ursacomputing/crossbow/actions/runs/4142199546/jobs/7162588784', 'https://github.com/ursacomputing/crossbow/actions/runs/4142199546/jobs/7162588623', 'https://github.com/ursacomputing/crossbow/actions/runs/4142199546/jobs/7162588454']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142187615/jobs/7162559489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4142191480/jobs/7163523591', 'https://github.com/ursacomputing/crossbow/actions/runs/4142191480/jobs/7162568466', 'https://github.com/ursacomputing/crossbow/actions/runs/4142191480/jobs/7162568282', 'https://github.com/ursacomputing/crossbow/actions/runs/4142191480/jobs/7162568114', 'https://github.com/ursacomputing/crossbow/actions/runs/4142191480/jobs/7162567908']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-java-jars,github,{},java-jars/github.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142189588/jobs/7162563815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142196690/jobs/7162581697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-python-sdist,github,{},python-sdist/github.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7163555278', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7163120281', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7163120163', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7163119999', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7163119837', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7163119697', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7163119514', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162854394', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162742319', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162742147', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162742025', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162741907', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162741742', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162741552', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162741436', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162741263', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162561952', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162561752', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162561567', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162561441', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162561276', 'https://github.com/ursacomputing/crossbow/actions/runs/4142183895/jobs/7162551640']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142194450/jobs/7162576449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247204066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142203107/jobs/7162597094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247139041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142183542/jobs/7162550868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247213327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142193247/jobs/7162573397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247174359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142188321/jobs/7162561140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142198355/jobs/7162585956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142188655/jobs/7162562041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142187272/jobs/7162558652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142202752/jobs/7162596240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142179638/jobs/7162542556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142182672/jobs/7162548563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142199155/jobs/7162587634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4142178464/jobs/7162539933'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142201325/jobs/7162592640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247186583'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142180107/jobs/7162543396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247145573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142183276/jobs/7162550087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247180138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142191059/jobs/7162570107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247170969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142178810/jobs/7162540730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11247196579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142173504/jobs/7162529695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142185806/jobs/7162555439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142172374/jobs/7162526956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142175948/jobs/7162534479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4142194012/jobs/7162575429'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-10-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,717d4fb7701f88961bf0b46a3bede1e72f45a19f
diff --git a/csv_reports/nightly-packaging-2023-02-11-0.csv b/csv_reports/nightly-packaging-2023-02-11-0.csv
deleted file mode 100644
index d3da8a75b7d..00000000000
--- a/csv_reports/nightly-packaging-2023-02-11-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150554542/jobs/7180293176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270330340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150542316/jobs/7180267216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270335691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150545521/jobs/7180275270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270312624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150554649/jobs/7180293418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150553118/jobs/7180290547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270320038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150552876/jobs/7180290078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270325747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150552579/jobs/7180289453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150542868/jobs/7180268538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11271107096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11271960683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11272300936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11271249761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11270839370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11270826703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11271010964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11271553070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11270978165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11271841551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11271645753'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11271089273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11271185861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11271425366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11271958594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11271504050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11271522043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,b056e07b8aefe73a26239da481d92a8562c41833
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11272312489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b056e07b8aefe73a26239da481d92a8562c41833
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150553688/jobs/7180291611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270308398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150541856/jobs/7180266353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270329917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150548611/jobs/7180281652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b056e07b8aefe73a26239da481d92a8562c41833
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4150542457/jobs/7180267714', 'https://github.com/ursacomputing/crossbow/actions/runs/4150542457/jobs/7180267663', 'https://github.com/ursacomputing/crossbow/actions/runs/4150542457/jobs/7180267617', 'https://github.com/ursacomputing/crossbow/actions/runs/4150542457/jobs/7180267561']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b056e07b8aefe73a26239da481d92a8562c41833
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150544708/jobs/7180272612'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b056e07b8aefe73a26239da481d92a8562c41833
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4150551581/jobs/7180622707', 'https://github.com/ursacomputing/crossbow/actions/runs/4150551581/jobs/7180287758', 'https://github.com/ursacomputing/crossbow/actions/runs/4150551581/jobs/7180287709', 'https://github.com/ursacomputing/crossbow/actions/runs/4150551581/jobs/7180287655', 'https://github.com/ursacomputing/crossbow/actions/runs/4150551581/jobs/7180287602']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-java-jars,github,{},java-jars/github.yml,b056e07b8aefe73a26239da481d92a8562c41833
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150541671/jobs/7180265981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b056e07b8aefe73a26239da481d92a8562c41833
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150546433/jobs/7180277281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-python-sdist,github,{},python-sdist/github.yml,b056e07b8aefe73a26239da481d92a8562c41833
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180782676', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180645821', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180645794', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180645764', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180645740', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180645700', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180645659', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180464074', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180419659', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180419615', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180419566', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180419512', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180419473', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180419415', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180419357', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180419279', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180283756', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180283690', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180283632', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180283564', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180283473', 'https://github.com/ursacomputing/crossbow/actions/runs/4150547312/jobs/7180279851']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b056e07b8aefe73a26239da481d92a8562c41833
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150547461/jobs/7180279564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270331497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150551980/jobs/7180288361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270317466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150554782/jobs/7180293738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270322640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150551154/jobs/7180286697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270319209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150554333/jobs/7180292799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150541033/jobs/7180264794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150547858/jobs/7180280451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150540838/jobs/7180264456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150547614/jobs/7180279920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150549482/jobs/7180283309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150552974/jobs/7180290296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150554142/jobs/7180292502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4150543693/jobs/7180270087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150550404/jobs/7180285241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270326264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150546007/jobs/7180276275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270337017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150553515/jobs/7180291239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270333622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150544440/jobs/7180271834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270310224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150542711/jobs/7180268190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11270308854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150543903/jobs/7180270513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150548842/jobs/7180282084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150545238/jobs/7180274413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150546638/jobs/7180277773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b056e07b8aefe73a26239da481d92a8562c41833
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4150551374/jobs/7180287168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-11-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b056e07b8aefe73a26239da481d92a8562c41833
diff --git a/csv_reports/nightly-packaging-2023-02-12-0.csv b/csv_reports/nightly-packaging-2023-02-12-0.csv
deleted file mode 100644
index 543a0e6d0b0..00000000000
--- a/csv_reports/nightly-packaging-2023-02-12-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155483418/jobs/7188596537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280123102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155489935/jobs/7188612303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280105417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155489670/jobs/7188611857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280125022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155493113/jobs/7188619108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155486243/jobs/7188604107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280105070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155490374/jobs/7188613204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280125886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155480853/jobs/7188591717'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155479694/jobs/7188589444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11280994062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11281064309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11280977113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11281904086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11280683072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11281485281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11280932740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11280684254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11280699384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11281448794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11281557820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11280950070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11281021193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11281121396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11281792433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11282429221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11282162280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11281474303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155483046/jobs/7188595736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280118374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155481196/jobs/7188592355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280100462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155482529/jobs/7188594594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4155487036/jobs/7188605960', 'https://github.com/ursacomputing/crossbow/actions/runs/4155487036/jobs/7188605898', 'https://github.com/ursacomputing/crossbow/actions/runs/4155487036/jobs/7188605821', 'https://github.com/ursacomputing/crossbow/actions/runs/4155487036/jobs/7188605750']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155486625/jobs/7188605006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4155493258/jobs/7188882297', 'https://github.com/ursacomputing/crossbow/actions/runs/4155493258/jobs/7188619585', 'https://github.com/ursacomputing/crossbow/actions/runs/4155493258/jobs/7188619524', 'https://github.com/ursacomputing/crossbow/actions/runs/4155493258/jobs/7188619464', 'https://github.com/ursacomputing/crossbow/actions/runs/4155493258/jobs/7188619418']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-java-jars,github,{},java-jars/github.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155487747/jobs/7188607143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155480393/jobs/7188590657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-python-sdist,github,{},python-sdist/github.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188978646', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188821161', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188821114', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188821065', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188821011', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188820966', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188820916', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188676707', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188676653', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188596815', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188596768', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188596714', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188596655', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188596595', 'https://github.com/ursacomputing/crossbow/actions/runs/4155480680/jobs/7188591401']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155484437/jobs/7188599271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280109995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155482016/jobs/7188593740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280106021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155479481/jobs/7188589071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280128696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155490678/jobs/7188614015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280111620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155486432/jobs/7188604530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155481000/jobs/7188592032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155486051/jobs/7188603664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155491953/jobs/7188616763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155480528/jobs/7188590997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155484953/jobs/7188600530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155487482/jobs/7188606625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155491142/jobs/7188615006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4155484681/jobs/7188599891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155479912/jobs/7188589777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280095705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155489297/jobs/7188611031'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280103057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155488252/jobs/7188608318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280109389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155493405/jobs/7188619809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280102620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155488812/jobs/7188609676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11280113899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155483182/jobs/7188596015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155488079/jobs/7188607922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155492162/jobs/7188617176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155489140/jobs/7188610512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4155490833/jobs/7188614337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-12-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
diff --git a/csv_reports/nightly-packaging-2023-02-13-0.csv b/csv_reports/nightly-packaging-2023-02-13-0.csv
deleted file mode 100644
index a677b22331b..00000000000
--- a/csv_reports/nightly-packaging-2023-02-13-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161571108/jobs/7199698463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293477128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161573134/jobs/7199703164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293491286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161582176/jobs/7199723697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293548757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161575753/jobs/7199709010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161564235/jobs/7199683496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293516284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161578572/jobs/7199715843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293549773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161589519/jobs/7199742948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161573555/jobs/7199704056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11293553661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11296565389'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11299078824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11297408721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11298386929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11295690898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11296415688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11295545763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11299299283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11300055951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11300180984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11298791551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11296891151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11297623100'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11300449807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11297859253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11297665789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11297141403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161582771/jobs/7199725318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293532456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161590857/jobs/7199746091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293550952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161587112/jobs/7199736179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4161584429/jobs/7199729540', 'https://github.com/ursacomputing/crossbow/actions/runs/4161584429/jobs/7199729400', 'https://github.com/ursacomputing/crossbow/actions/runs/4161584429/jobs/7199729232', 'https://github.com/ursacomputing/crossbow/actions/runs/4161584429/jobs/7199728991']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161568391/jobs/7199692796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4161572744/jobs/7200533036', 'https://github.com/ursacomputing/crossbow/actions/runs/4161572744/jobs/7199702755', 'https://github.com/ursacomputing/crossbow/actions/runs/4161572744/jobs/7199702620', 'https://github.com/ursacomputing/crossbow/actions/runs/4161572744/jobs/7199702422', 'https://github.com/ursacomputing/crossbow/actions/runs/4161572744/jobs/7199702234']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-java-jars,github,{},java-jars/github.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161575258/jobs/7199707931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161563213/jobs/7199681290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-python-sdist,github,{},python-sdist/github.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7200956945', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7200512206', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7200511984', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7200511803', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7200511643', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7200511484', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7200511260', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7199882882', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7199882665', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7199714838', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7199714690', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7199714542', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7199714403', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7199714256', 'https://github.com/ursacomputing/crossbow/actions/runs/4161563778/jobs/7199682530']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161588310/jobs/7199739984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293517560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161569696/jobs/7199695572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293542353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161585815/jobs/7199732595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293529515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161568012/jobs/7199691876'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293525474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161567593/jobs/7199690931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161565117/jobs/7199685315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161576174/jobs/7199709922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161593065/jobs/7199751664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161569281/jobs/7199694763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161574382/jobs/7199705989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161565553/jobs/7199686344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161564721/jobs/7199684529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4161574840/jobs/7199706927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161579976/jobs/7199718811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293466309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161592312/jobs/7199749824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293497373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161580424/jobs/7199719798'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293487928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161590429/jobs/7199744964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293528016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161592709/jobs/7199750774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11293478649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161578165/jobs/7199714914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161562288/jobs/7199679524'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161583590/jobs/7199727039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161579451/jobs/7199717705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4161577501/jobs/7199713278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-13-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,c4b01c60fba85bbfc3a1b1510e179153c0f79515
diff --git a/csv_reports/nightly-packaging-2023-02-14-0.csv b/csv_reports/nightly-packaging-2023-02-14-0.csv
deleted file mode 100644
index 742f404fecc..00000000000
--- a/csv_reports/nightly-packaging-2023-02-14-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171933090/jobs/7222420693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323290767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171913541/jobs/7222376241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323317467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171924531/jobs/7222400099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323342730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171908269/jobs/7222364666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171917614/jobs/7222384875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323287553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171903498/jobs/7222354845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323286358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171904860/jobs/7222357472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171915535/jobs/7222380009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11326554841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-linux-aarch64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11328552125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11327321427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11328842214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11325490152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11328524385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11327465334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11325477247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-linux-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11325905343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11330054345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11326439677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11326642917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-osx-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11326494297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-osx-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11330128516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11327056093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11327986072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11327226168'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11330518839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171928031/jobs/7222407616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323292188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171914016/jobs/7222377188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323328893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171931557/jobs/7222416501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4171923457/jobs/7222398219', 'https://github.com/ursacomputing/crossbow/actions/runs/4171923457/jobs/7222398046', 'https://github.com/ursacomputing/crossbow/actions/runs/4171923457/jobs/7222397921', 'https://github.com/ursacomputing/crossbow/actions/runs/4171923457/jobs/7222397781']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171918993/jobs/7222387706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4171911933/jobs/7223177530', 'https://github.com/ursacomputing/crossbow/actions/runs/4171911933/jobs/7222373170', 'https://github.com/ursacomputing/crossbow/actions/runs/4171911933/jobs/7222372954', 'https://github.com/ursacomputing/crossbow/actions/runs/4171911933/jobs/7222372743', 'https://github.com/ursacomputing/crossbow/actions/runs/4171911933/jobs/7222372591']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-java-jars,github,{},java-jars/github.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171930801/jobs/7222414323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171932339/jobs/7222418482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-python-sdist,github,{},python-sdist/github.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7223919063', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7223462119', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7223461969', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7223461815', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7223461665', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7223461512', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7223461270', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7222672290', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7222672058', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7222375186', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7222375024', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7222374799', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7222374649', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7222374465', 'https://github.com/ursacomputing/crossbow/actions/runs/4171906930/jobs/7222362091']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171911359/jobs/7222371425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323350739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171927190/jobs/7222405907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323362305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171926657/jobs/7222404826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323331174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171919453/jobs/7222388615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323316226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171912309/jobs/7222373572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171925871/jobs/7222403174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171921969/jobs/7222394030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171916441/jobs/7222382060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171916126/jobs/7222381203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171906479/jobs/7222361208'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171920156/jobs/7222389825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171934379/jobs/7222423781'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4171904425/jobs/7222356639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171922679/jobs/7222395775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323338780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171928725/jobs/7222409176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323298177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171933437/jobs/7222421573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323340141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171934846/jobs/7222424831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323370506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171905362/jobs/7222358657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11323310188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171932008/jobs/7222417673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171918029/jobs/7222385685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171918497/jobs/7222386665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171935629/jobs/7222426878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4171928378/jobs/7222408377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,ddfa8eed9b188fcc7b38767d1858c2588c588f05
diff --git a/csv_reports/nightly-packaging-2023-02-15-0.csv b/csv_reports/nightly-packaging-2023-02-15-0.csv
deleted file mode 100644
index 22322379ba0..00000000000
--- a/csv_reports/nightly-packaging-2023-02-15-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182015709/jobs/7244586873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352673597'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182026637/jobs/7244611230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352647688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182019126/jobs/7244594779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352690551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182024964/jobs/7244607492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182006814/jobs/7244567835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352701036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182011494/jobs/7244577576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352655720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182022151/jobs/7244601452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182009210/jobs/7244572918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-clean,pending,['https://github.com/ursacomputing/crossbow/runs/11352687199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-linux-aarch64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11352666324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-linux-aarch64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11352628270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-linux-aarch64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11352636844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-linux-ppc64le-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11352664323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-linux-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11352681917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-linux-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11352668433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-linux-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11352630167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-linux-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11352670065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-osx-arm64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11352696674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-osx-arm64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11352673582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-osx-arm64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11352695801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-osx-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11352667563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-osx-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11352672619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-osx-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11352685378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-win-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11352642355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-win-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11352701336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-conda-win-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11352633056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182008741/jobs/7244572019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352639002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182016500/jobs/7244588696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352653163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182028074/jobs/7244615471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4182014462/jobs/7244584770', 'https://github.com/ursacomputing/crossbow/actions/runs/4182014462/jobs/7244584620', 'https://github.com/ursacomputing/crossbow/actions/runs/4182014462/jobs/7244584466', 'https://github.com/ursacomputing/crossbow/actions/runs/4182014462/jobs/7244584313']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182016747/jobs/7244589306'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4182033822/jobs/7245347388', 'https://github.com/ursacomputing/crossbow/actions/runs/4182033822/jobs/7244631053', 'https://github.com/ursacomputing/crossbow/actions/runs/4182033822/jobs/7244630934', 'https://github.com/ursacomputing/crossbow/actions/runs/4182033822/jobs/7244630780', 'https://github.com/ursacomputing/crossbow/actions/runs/4182033822/jobs/7244630619']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-java-jars,github,{},java-jars/github.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182028415/jobs/7244616604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182007582/jobs/7244569511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-python-sdist,github,{},python-sdist/github.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7247619763', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7245254073', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7245253879', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7245253732', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7245253535', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7245253333', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7245253065', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244886525', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244788101', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244787954', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244787778', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244787612', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244787474', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244787303', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244787083', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244786851', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244621337', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244621191', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244621027', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244620907', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244620607', 'https://github.com/ursacomputing/crossbow/actions/runs/4182025823/jobs/7244609470']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182010669/jobs/7244575964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352693017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182031355/jobs/7244624193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352678455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182028780/jobs/7244617780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352656893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182033472/jobs/7244629824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352643392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182027020/jobs/7244612146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182012294/jobs/7244579411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182018541/jobs/7244593538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182022432/jobs/7244602184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182014887/jobs/7244585082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182029327/jobs/7244619417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182024527/jobs/7244606542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182020066/jobs/7244596815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4182015290/jobs/7244585953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182013327/jobs/7244581789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352630972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182018133/jobs/7244592715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352706815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182034921/jobs/7244633346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352696485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182012898/jobs/7244580959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352636462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182013728/jobs/7244582658'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11352674989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182017828/jobs/7244591941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182032777/jobs/7244627830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182034506/jobs/7244632407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182031790/jobs/7244625173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4182006004/jobs/7244565817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-15-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,e63215ca1b3c9f5f40311a9ff67f0f286cd142c8
diff --git a/csv_reports/nightly-packaging-2023-02-16-0.csv b/csv_reports/nightly-packaging-2023-02-16-0.csv
deleted file mode 100644
index 70f7c5fc872..00000000000
--- a/csv_reports/nightly-packaging-2023-02-16-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192121057/jobs/7267299693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382423136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192120212/jobs/7267297869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382405853'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192134747/jobs/7267330087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382426581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192142325/jobs/7267348506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4192139214/jobs/7267340126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382377605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192147322/jobs/7267362324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382411710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192142794/jobs/7267349601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192141993/jobs/7267347494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11388638822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-linux-aarch64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11382447344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-linux-aarch64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11387276685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-linux-aarch64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11388620164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11389314112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-linux-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11388564603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-linux-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11388174942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-linux-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11386646598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-linux-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11382438299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11386333384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-osx-arm64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11382455518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11390045730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-osx-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11382448151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-osx-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11382450949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-osx-x64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11386997561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11389865901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-win-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11382419801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11387216049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192117983/jobs/7267293376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382389985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192136528/jobs/7267334007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382440734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192118499/jobs/7267294363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4192125601/jobs/7267310275', 'https://github.com/ursacomputing/crossbow/actions/runs/4192125601/jobs/7267310135', 'https://github.com/ursacomputing/crossbow/actions/runs/4192125601/jobs/7267309974', 'https://github.com/ursacomputing/crossbow/actions/runs/4192125601/jobs/7267309840']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4192124290/jobs/7267306956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4192123163/jobs/7268551578', 'https://github.com/ursacomputing/crossbow/actions/runs/4192123163/jobs/7267304970', 'https://github.com/ursacomputing/crossbow/actions/runs/4192123163/jobs/7267304827', 'https://github.com/ursacomputing/crossbow/actions/runs/4192123163/jobs/7267304642', 'https://github.com/ursacomputing/crossbow/actions/runs/4192123163/jobs/7267304506']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-java-jars,github,{},java-jars/github.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4192132657/jobs/7267325540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192122383/jobs/7267302674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-python-sdist,github,{},python-sdist/github.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7269075565', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267895325', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267895173', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267895037', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267894896', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267894698', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267894513', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267685757', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267557340', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267557236', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267557112', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267556983', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267556803', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267556667', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267556535', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267556359', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267362313', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267362172', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267362044', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267361873', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267361655', 'https://github.com/ursacomputing/crossbow/actions/runs/4192143945/jobs/7267352589']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192133424/jobs/7267327284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382384327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192117202/jobs/7267291617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382435830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4192131147/jobs/7267322177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382434342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4192136087/jobs/7267333059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382398905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192137597/jobs/7267336439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192135245/jobs/7267331238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192133027/jobs/7267326395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192140879/jobs/7267344279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192122729/jobs/7267303531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192137245/jobs/7267335661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192120648/jobs/7267298806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192145149/jobs/7267355468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192144776/jobs/7267354555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4192117534/jobs/7267292365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-manylinux2014-cp310-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382412730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4192124750/jobs/7267308088'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-manylinux2014-cp311-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382391229'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4192126037/jobs/7267310756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382419611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4192128024/jobs/7267315184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382439273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-manylinux2014-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4192147020/jobs/7267360105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11382432254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192146324/jobs/7267358494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192138297/jobs/7267338163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192128452/jobs/7267316130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192145511/jobs/7267356445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4192146692/jobs/7267359350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b40fb2c7980bff96c1a4be653309731131d36ed4
diff --git a/csv_reports/nightly-packaging-2023-02-17-0.csv b/csv_reports/nightly-packaging-2023-02-17-0.csv
deleted file mode 100644
index ae205bd10f7..00000000000
--- a/csv_reports/nightly-packaging-2023-02-17-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202043433/jobs/7289710516'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411723774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202040178/jobs/7289701518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411719679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202024143/jobs/7289665969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411743693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202035317/jobs/7289691052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4202025982/jobs/7289670049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411704363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202039850/jobs/7289700787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411706454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202029095/jobs/7289677046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202038626/jobs/7289698383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11414858915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11416046569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11416241274'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11416913344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11414690776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11415802442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11416886222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11417930642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11413837751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-osx-arm64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11414323358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-osx-arm64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11413774441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-osx-arm64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11414797877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11416485386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11416231841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11413003437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11417249188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11419096769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11418148888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202044052/jobs/7289712304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411747102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202027586/jobs/7289673568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411748968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4202034446/jobs/7289689266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4202036037/jobs/7289693102', 'https://github.com/ursacomputing/crossbow/actions/runs/4202036037/jobs/7289692985', 'https://github.com/ursacomputing/crossbow/actions/runs/4202036037/jobs/7289692865', 'https://github.com/ursacomputing/crossbow/actions/runs/4202036037/jobs/7289692741']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4202048139/jobs/7289721943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4202045017/jobs/7290690556', 'https://github.com/ursacomputing/crossbow/actions/runs/4202045017/jobs/7289715161', 'https://github.com/ursacomputing/crossbow/actions/runs/4202045017/jobs/7289715035', 'https://github.com/ursacomputing/crossbow/actions/runs/4202045017/jobs/7289714895', 'https://github.com/ursacomputing/crossbow/actions/runs/4202045017/jobs/7289714767']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-java-jars,github,{},java-jars/github.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4202037515/jobs/7289695975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202032289/jobs/7289684288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-python-sdist,github,{},python-sdist/github.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7291717964', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7291273876', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7291273751', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7291273623', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7291273515', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7291273402', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7291273243', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7290127336', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7290024798', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7290024679', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7290024558', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7290024435', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7290024313', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7290024225', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7290024144', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7290023977', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7289695472', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7289695366', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7289695267', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7289695151', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7289695018', 'https://github.com/ursacomputing/crossbow/actions/runs/4202031905/jobs/7289683491']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202042507/jobs/7289707839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411689020'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202042790/jobs/7289708736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411729071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4202043119/jobs/7289709674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411699728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4202036812/jobs/7289694501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11411684016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202023444/jobs/7289664392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202040858/jobs/7289703465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202026348/jobs/7289670827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202029550/jobs/7289678134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202023748/jobs/7289665091'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202046170/jobs/7289717331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202029933/jobs/7289678986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202021042/jobs/7289659124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202020580/jobs/7289658203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202042010/jobs/7289706620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11411687963'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202025271/jobs/7289668381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11411758049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202034111/jobs/7289688390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11411694163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202045742/jobs/7289716413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11411714228'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202031430/jobs/7289682431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11411730093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202027168/jobs/7289672622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202021773/jobs/7289660577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202032641/jobs/7289685025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202047029/jobs/7289719184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4202037853/jobs/7289696726'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-17-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,fe19160b106f2a9c8606b25599572bb3995b68f9
diff --git a/csv_reports/nightly-packaging-2023-02-19-0.csv b/csv_reports/nightly-packaging-2023-02-19-0.csv
deleted file mode 100644
index c85c8323161..00000000000
--- a/csv_reports/nightly-packaging-2023-02-19-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215361793/jobs/7316444509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445154468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215362540/jobs/7316446211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445152454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215358988/jobs/7316437951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445160285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215362849/jobs/7316446822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4215360954/jobs/7316442153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445165725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215368193/jobs/7316458172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445152015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215356456/jobs/7316433058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215369346/jobs/7316460914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11445163479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11445915163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11445953988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11446198651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11446268496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11445972980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11445907308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11445680127'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11445794725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-osx-arm64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11445296843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-osx-arm64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11445284382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-osx-arm64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11445294458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11445464774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11445457694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11445291557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11446153202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11447406578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,03463dec5f920dc75340f04338414ce35240b14d
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11446354080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,03463dec5f920dc75340f04338414ce35240b14d
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215367726/jobs/7316457216'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445130825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215366074/jobs/7316454004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445136545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4215357205/jobs/7316434345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,03463dec5f920dc75340f04338414ce35240b14d
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4215364841/jobs/7316451151', 'https://github.com/ursacomputing/crossbow/actions/runs/4215364841/jobs/7316451090', 'https://github.com/ursacomputing/crossbow/actions/runs/4215364841/jobs/7316451025', 'https://github.com/ursacomputing/crossbow/actions/runs/4215364841/jobs/7316450968']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,03463dec5f920dc75340f04338414ce35240b14d
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4215360752/jobs/7316441627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,03463dec5f920dc75340f04338414ce35240b14d
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4215358122/jobs/7316819402', 'https://github.com/ursacomputing/crossbow/actions/runs/4215358122/jobs/7316436450', 'https://github.com/ursacomputing/crossbow/actions/runs/4215358122/jobs/7316436387', 'https://github.com/ursacomputing/crossbow/actions/runs/4215358122/jobs/7316436326', 'https://github.com/ursacomputing/crossbow/actions/runs/4215358122/jobs/7316436267']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-java-jars,github,{},java-jars/github.yml,03463dec5f920dc75340f04338414ce35240b14d
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4215365503/jobs/7316452342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,03463dec5f920dc75340f04338414ce35240b14d
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215359734/jobs/7316439114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-python-sdist,github,{},python-sdist/github.yml,03463dec5f920dc75340f04338414ce35240b14d
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316836992', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316671332', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316671282', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316671235', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316671181', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316671131', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316671078', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316548957', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316515172', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316515109', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316515040', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316514986', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316514932', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316514868', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316514808', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316514725', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316449627', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316449579', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316449541', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316449502', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316449444', 'https://github.com/ursacomputing/crossbow/actions/runs/4215361291/jobs/7316443198']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,03463dec5f920dc75340f04338414ce35240b14d
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215360583/jobs/7316441119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445154940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-ubuntu-focal-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4215355464/jobs/7316431296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445135667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4215356923/jobs/7316433878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445155916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4215365992/jobs/7316453776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11445134196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215364557/jobs/7316450504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215360473/jobs/7316440721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215368729/jobs/7316459500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215368328/jobs/7316458565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215356017/jobs/7316432949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215358809/jobs/7316437624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215355811/jobs/7316431893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215363334/jobs/7316448111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215360295/jobs/7316440268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215368489/jobs/7316458931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11445140246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215367961/jobs/7316457620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11445131138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215357921/jobs/7316435839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11445156395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215358308/jobs/7316436668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11445153581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215355623/jobs/7316431549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11445163177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215368842/jobs/7316459775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215359178/jobs/7316438284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215358516/jobs/7316437018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215358685/jobs/7316437407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,03463dec5f920dc75340f04338414ce35240b14d
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4215360007/jobs/7316439660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,03463dec5f920dc75340f04338414ce35240b14d
diff --git a/csv_reports/nightly-packaging-2023-02-20-0.csv b/csv_reports/nightly-packaging-2023-02-20-0.csv
deleted file mode 100644
index e82164cdbab..00000000000
--- a/csv_reports/nightly-packaging-2023-02-20-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221500801/jobs/7328864681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11459981109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221493988/jobs/7328849746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11459987790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221518813/jobs/7328906040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11459994665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221519118/jobs/7328906949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4221507034/jobs/7328878440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11460026191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221512873/jobs/7328891648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11460002668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221518173/jobs/7328904056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221522303/jobs/7328914556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11460026740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11462597892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11462956132'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11463609899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11462542024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11462597006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11461678291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11463347859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11461686012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-osx-arm64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11460416141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-osx-arm64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11460433077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-osx-arm64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11460407614'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11461046460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11460436426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11460962217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11463987944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11465296033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11463611019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221506242/jobs/7328876647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11460037757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221494433/jobs/7328850728'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11459996723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4221497498/jobs/7328857397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4221493119/jobs/7328848189', 'https://github.com/ursacomputing/crossbow/actions/runs/4221493119/jobs/7328848033', 'https://github.com/ursacomputing/crossbow/actions/runs/4221493119/jobs/7328847881', 'https://github.com/ursacomputing/crossbow/actions/runs/4221493119/jobs/7328847730']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4221517903/jobs/7328903353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4221493487/jobs/7329938418', 'https://github.com/ursacomputing/crossbow/actions/runs/4221493487/jobs/7328849235', 'https://github.com/ursacomputing/crossbow/actions/runs/4221493487/jobs/7328848974', 'https://github.com/ursacomputing/crossbow/actions/runs/4221493487/jobs/7328848854', 'https://github.com/ursacomputing/crossbow/actions/runs/4221493487/jobs/7328848689']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-java-jars,github,{},java-jars/github.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4221515783/jobs/7328898377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221515330/jobs/7328897431'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-python-sdist,github,{},python-sdist/github.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329992102', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329508063', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329507911', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329507782', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329507620', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329507521', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329507292', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329168964', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329072232', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329072051', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329071939', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329071810', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329071695', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329071534', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329071359', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7329071208', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7328896481', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7328896344', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7328896218', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7328896084', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7328895936', 'https://github.com/ursacomputing/crossbow/actions/runs/4221509821/jobs/7328885258']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221506699/jobs/7328877632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11459973277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-ubuntu-focal-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4221518484/jobs/7328905040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11459992032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4221520603/jobs/7328910626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11459968670'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4221514580/jobs/7328895817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11459984502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221509343/jobs/7328884116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221495982/jobs/7328853673'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221513872/jobs/7328894028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221511409/jobs/7328888344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221512535/jobs/7328890759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221508544/jobs/7328882086'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221514934/jobs/7328896568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221511765/jobs/7328888996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221513529/jobs/7328893286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221512183/jobs/7328889883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11460017324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221507529/jobs/7328879494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11460036901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221516589/jobs/7328900055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11460009719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221521912/jobs/7328913630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11459967234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221497881/jobs/7328858221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11459978812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221508255/jobs/7328881222'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221492430/jobs/7328846125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221508922/jobs/7328883033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221498224/jobs/7328859112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,7db7e6ac846199678e2694f173df6dd6376ee823
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4221505112/jobs/7328874571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,7db7e6ac846199678e2694f173df6dd6376ee823
diff --git a/csv_reports/nightly-packaging-2023-02-21-0.csv b/csv_reports/nightly-packaging-2023-02-21-0.csv
deleted file mode 100644
index 581f0e560c8..00000000000
--- a/csv_reports/nightly-packaging-2023-02-21-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230717880/jobs/7348364953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484719325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230730200/jobs/7348394616'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484728988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230738503/jobs/7348415711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484692415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230729181/jobs/7348391358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4230720379/jobs/7348370671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484698159'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230728128/jobs/7348388219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484662108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230708703/jobs/7348344052'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230735281/jobs/7348407803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11486758824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11487720725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11488466943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11488592892'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11487635846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11486886300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11486962514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11486687051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11489024866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-osx-arm64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11485153632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-osx-arm64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11485722690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-osx-arm64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11485099246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11485137638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11485693558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11487483195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11489239676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11488391525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11487845130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230725179/jobs/7348381903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484681047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230737240/jobs/7348412572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484655386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4230734204/jobs/7348405002'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4230738158/jobs/7348415231', 'https://github.com/ursacomputing/crossbow/actions/runs/4230738158/jobs/7348415074', 'https://github.com/ursacomputing/crossbow/actions/runs/4230738158/jobs/7348414946', 'https://github.com/ursacomputing/crossbow/actions/runs/4230738158/jobs/7348414793']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4230731045/jobs/7348396590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4230728527/jobs/7349500341', 'https://github.com/ursacomputing/crossbow/actions/runs/4230728527/jobs/7348389816', 'https://github.com/ursacomputing/crossbow/actions/runs/4230728527/jobs/7348389640', 'https://github.com/ursacomputing/crossbow/actions/runs/4230728527/jobs/7348389473', 'https://github.com/ursacomputing/crossbow/actions/runs/4230728527/jobs/7348389290']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-java-jars,github,{},java-jars/github.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4230709036/jobs/7348344864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230714899/jobs/7348358444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-python-sdist,github,{},python-sdist/github.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7349557058', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7349063834', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7349063653', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7349063502', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7349063355', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7349063171', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7349062946', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348715258', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348614543', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348614411', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348614276', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348614155', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348614044', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348613895', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348613782', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348613603', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348417006', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348416872', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348416706', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348416537', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348416297', 'https://github.com/ursacomputing/crossbow/actions/runs/4230734557/jobs/7348405889']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230728895/jobs/7348390485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484722282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-ubuntu-focal-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4230711665/jobs/7348350693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484684672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4230731860/jobs/7348398572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484691703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4230727732/jobs/7348387317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11484700626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230714555/jobs/7348357646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230722268/jobs/7348374581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230726286/jobs/7348384205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230712086/jobs/7348351684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230709770/jobs/7348346427'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230732346/jobs/7348399690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230712628/jobs/7348352899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230724890/jobs/7348381124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230733161/jobs/7348401863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230719531/jobs/7348368533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11484672140'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230715291/jobs/7348359295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11484726770'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230715786/jobs/7348360265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11484730200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230723028/jobs/7348376441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11484663151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230737679/jobs/7348413755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11484711513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230721672/jobs/7348373312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230722612/jobs/7348375388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230714219/jobs/7348356730'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230727214/jobs/7348386015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4230708356/jobs/7348343340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-21-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,1d74483fa0659aebc0cb1dfb771ba38800166bf2
diff --git a/csv_reports/nightly-packaging-2023-02-22-0.csv b/csv_reports/nightly-packaging-2023-02-22-0.csv
deleted file mode 100644
index 69837467c46..00000000000
--- a/csv_reports/nightly-packaging-2023-02-22-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240854584/jobs/7370350737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-almalinux-8-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240853958/jobs/7370349558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11513336344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240839402/jobs/7370316827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-amazon-linux-2-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240855522/jobs/7370352861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4240842482/jobs/7370323568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-centos-8-stream-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4240868347/jobs/7370386446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-centos-9-stream-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240849463/jobs/7370339315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240838563/jobs/7370314962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11513478939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11516962921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11515796028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11513408574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11515436778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11515373293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11517177875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11515552694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11515584954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-osx-arm64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11514312045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-osx-arm64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11514810605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-osx-arm64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11513757346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11515981501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11513841125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11513834419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11516609298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-win-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11515835092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11517362850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240843948/jobs/7370326691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11513337479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240841992/jobs/7370322741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11513337629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4240851712/jobs/7370344608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4240843466/jobs/7370326269', 'https://github.com/ursacomputing/crossbow/actions/runs/4240843466/jobs/7370326081', 'https://github.com/ursacomputing/crossbow/actions/runs/4240843466/jobs/7370325932', 'https://github.com/ursacomputing/crossbow/actions/runs/4240843466/jobs/7370325686']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-homebrew-r-brew,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4240856018/jobs/7370354211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4240844420/jobs/7371410529', 'https://github.com/ursacomputing/crossbow/actions/runs/4240844420/jobs/7370328221', 'https://github.com/ursacomputing/crossbow/actions/runs/4240844420/jobs/7370328039', 'https://github.com/ursacomputing/crossbow/actions/runs/4240844420/jobs/7370327863', 'https://github.com/ursacomputing/crossbow/actions/runs/4240844420/jobs/7370327663']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-java-jars,github,{},java-jars/github.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4240861029/jobs/7370368152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240860106/jobs/7370365757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-python-sdist,github,{},python-sdist/github.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7371467661', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370981544', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370981365', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370981114', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370980984', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370980815', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370980618', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370694599', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370598471', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370598280', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370598083', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370597933', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370597774', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370597626', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370597493', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370597288', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370341243', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370341082', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370340870', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370340715', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370340453', 'https://github.com/ursacomputing/crossbow/actions/runs/4240845330/jobs/7370329790']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240867818/jobs/7370385139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-ubuntu-bionic-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-ubuntu-focal-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4240860582/jobs/7370366959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-ubuntu-focal-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4240861737/jobs/7370370021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-ubuntu-jammy-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4240848070/jobs/7370335703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-ubuntu-kinetic-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240864017/jobs/7370376122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240857225/jobs/7370357744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240844936/jobs/7370328915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240866008/jobs/7370380968'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240847417/jobs/7370334707'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240842994/jobs/7370324570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240850886/jobs/7370342622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240859619/jobs/7370364684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240868786/jobs/7370387303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240846228/jobs/7370331905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-manylinux2014-cp310-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240856433/jobs/7370355384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11513392978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240836991/jobs/7370311625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-manylinux2014-cp37-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240848962/jobs/7370338192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-manylinux2014-cp38-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240841604/jobs/7370321815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-manylinux2014-cp39-arm64,error,[],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240866777/jobs/7370383016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240846638/jobs/7370332802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240869827/jobs/7370389769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240845770/jobs/7370330827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4240866390/jobs/7370381926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-22-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,958f63502679c7074ff60c0d06dbb1a0be0a5cfb
diff --git a/csv_reports/nightly-packaging-2023-02-24-0.csv b/csv_reports/nightly-packaging-2023-02-24-0.csv
deleted file mode 100644
index 9ce8b8e40f5..00000000000
--- a/csv_reports/nightly-packaging-2023-02-24-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260709041/jobs/7414175385'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571050939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260727854/jobs/7414219867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571043008'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260703101/jobs/7414163027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571051571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260724437/jobs/7414211328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260723301/jobs/7414208655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571059959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260704232/jobs/7414165594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571051415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260698653/jobs/7414153932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260715039/jobs/7414188913'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11571092542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11573680498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11573344448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11573927411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11572935536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11573169738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11572838507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11573583048'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11572475581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-osx-arm64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11573314636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-osx-arm64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11571393627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-osx-arm64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11571421907'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11571426923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11572930821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11571386161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11574069578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11575888360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-conda-win-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11572288674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260713856/jobs/7414186394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571023101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260701364/jobs/7414159145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571013077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260722663/jobs/7414206846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4260711965/jobs/7414182350', 'https://github.com/ursacomputing/crossbow/actions/runs/4260711965/jobs/7414182188', 'https://github.com/ursacomputing/crossbow/actions/runs/4260711965/jobs/7414182033', 'https://github.com/ursacomputing/crossbow/actions/runs/4260711965/jobs/7414181869']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260723696/jobs/7414209573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4260715887/jobs/7415197819', 'https://github.com/ursacomputing/crossbow/actions/runs/4260715887/jobs/7414191080', 'https://github.com/ursacomputing/crossbow/actions/runs/4260715887/jobs/7414190930', 'https://github.com/ursacomputing/crossbow/actions/runs/4260715887/jobs/7414190774', 'https://github.com/ursacomputing/crossbow/actions/runs/4260715887/jobs/7414190631']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-java-jars,github,{},java-jars/github.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4260727561/jobs/7414219094'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260721322/jobs/7414202411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-python-sdist,github,{},python-sdist/github.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7415325580', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414911256', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414911109', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414910973', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414910815', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414910669', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414910524', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414513175', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414428172', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414428048', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414427936', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414426552', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414426429', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414426289', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414426127', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414425993', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414217836', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414217709', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414217568', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414217429', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414217230', 'https://github.com/ursacomputing/crossbow/actions/runs/4260722093/jobs/7414204931']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260724896/jobs/7414212304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571003584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4260708684/jobs/7414174510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571045093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4260719619/jobs/7414198817'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11571076707'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4260711495/jobs/7414180807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11571062923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260712355/jobs/7414182800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260703838/jobs/7414164759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260720536/jobs/7414200557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260698983/jobs/7414154519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260706822/jobs/7414170452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260707246/jobs/7414171338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260722428/jobs/7414205950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260709445/jobs/7414176361'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260718537/jobs/7414196494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260720070/jobs/7414199675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571017246'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260713426/jobs/7414185373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571041852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260709830/jobs/7414177122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571024409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260726473/jobs/7414216193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571047541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260719211/jobs/7414197885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11571016084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260702745/jobs/7414162364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260706311/jobs/7414169349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260713041/jobs/7414184561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260716756/jobs/7414192469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4260725269/jobs/7414213174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,e8e50a3ca96ec8eb2f2beb383cf9005ce1c93486
diff --git a/csv_reports/nightly-packaging-2023-02-25-0.csv b/csv_reports/nightly-packaging-2023-02-25-0.csv
deleted file mode 100644
index 76c8803183b..00000000000
--- a/csv_reports/nightly-packaging-2023-02-25-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269164698/jobs/7432155084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594372815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269167944/jobs/7432162672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594349979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269170272/jobs/7432167835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594364534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269165157/jobs/7432155865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269165919/jobs/7432157479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594362062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269165374/jobs/7432156164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594360953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269165415/jobs/7432156243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269173266/jobs/7432173969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11594377148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11596161608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11596129494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11595385426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11595127547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11595535669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11594864567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11595748640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11594861777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11595131298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11595707526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11596128411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11595227957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11596134434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11595226993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11595688686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11595516058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11595556060'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269165640/jobs/7432156689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594349443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269175597/jobs/7432178918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594341962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269172009/jobs/7432171383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4269166155/jobs/7432158212', 'https://github.com/ursacomputing/crossbow/actions/runs/4269166155/jobs/7432158140', 'https://github.com/ursacomputing/crossbow/actions/runs/4269166155/jobs/7432158080', 'https://github.com/ursacomputing/crossbow/actions/runs/4269166155/jobs/7432158004']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269163520/jobs/7432153170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4269171140/jobs/7432452674', 'https://github.com/ursacomputing/crossbow/actions/runs/4269171140/jobs/7432169706', 'https://github.com/ursacomputing/crossbow/actions/runs/4269171140/jobs/7432169658', 'https://github.com/ursacomputing/crossbow/actions/runs/4269171140/jobs/7432169617', 'https://github.com/ursacomputing/crossbow/actions/runs/4269171140/jobs/7432169560']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-java-jars,github,{},java-jars/github.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4269171526/jobs/7432170584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4269162224/jobs/7432150624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-python-sdist,github,{},python-sdist/github.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432574353', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432440451', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432440375', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432440305', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432440257', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432440202', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432440125', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432298463', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432266419', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432266389', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432266351', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432266309', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432266275', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432266253', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432266230', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432266189', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432156602', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432156511', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432156420', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432156372', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432156306', 'https://github.com/ursacomputing/crossbow/actions/runs/4269162709/jobs/7432151463']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269164206/jobs/7432154327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594355522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-focal-amd64,pending,['https://github.com/ursacomputing/crossbow/actions/runs/4269169004/jobs/7432165244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594368110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4269173071/jobs/7432173578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11594369296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4269172106/jobs/7432171575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11594338992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269163748/jobs/7432153575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269173639/jobs/7432174843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269173384/jobs/7432174249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269167254/jobs/7432160784'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269169203/jobs/7432165637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269169839/jobs/7432166989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269175769/jobs/7432179260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269168802/jobs/7432164806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269167690/jobs/7432161877'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269163309/jobs/7432152755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594360199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269170048/jobs/7432167443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594368641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269169620/jobs/7432166512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594362851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269170842/jobs/7432168884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594359941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269166312/jobs/7432158448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11594344725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269165757/jobs/7432157051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269174276/jobs/7432176075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269174690/jobs/7432176823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269173772/jobs/7432175156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4269174914/jobs/7432177245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
diff --git a/csv_reports/nightly-packaging-2023-02-26-0.csv b/csv_reports/nightly-packaging-2023-02-26-0.csv
deleted file mode 100644
index bf9649251a3..00000000000
--- a/csv_reports/nightly-packaging-2023-02-26-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274147921/jobs/7440545868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604168314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274142562/jobs/7440534150'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604190886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274149259/jobs/7440548359'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604187857'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274152004/jobs/7440554330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274149041/jobs/7440547987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604159172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274142975/jobs/7440534836'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604185560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274141234/jobs/7440531250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274150107/jobs/7440550628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11604184473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11605939792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11604968924'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11605306108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11605480825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11604678413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11604846286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11604700156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11604851710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11604996621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11605554743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11605768938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11605095039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11605974603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11605154289'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11605076110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11606672315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11605648275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274142753/jobs/7440534462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604176424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274144876/jobs/7440538529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604184241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274141485/jobs/7440531727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4274147401/jobs/7440544461', 'https://github.com/ursacomputing/crossbow/actions/runs/4274147401/jobs/7440544369', 'https://github.com/ursacomputing/crossbow/actions/runs/4274147401/jobs/7440544289', 'https://github.com/ursacomputing/crossbow/actions/runs/4274147401/jobs/7440544225']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274152896/jobs/7440556506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4274142411/jobs/7440843019', 'https://github.com/ursacomputing/crossbow/actions/runs/4274142411/jobs/7440533986', 'https://github.com/ursacomputing/crossbow/actions/runs/4274142411/jobs/7440533930', 'https://github.com/ursacomputing/crossbow/actions/runs/4274142411/jobs/7440533885', 'https://github.com/ursacomputing/crossbow/actions/runs/4274142411/jobs/7440533843']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-java-jars,github,{},java-jars/github.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4274153108/jobs/7440556847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4274143266/jobs/7440535345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-python-sdist,github,{},python-sdist/github.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440925339', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440747890', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440747832', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440747775', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440747727', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440747671', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440747608', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440654292', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440620037', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440619980', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440619934', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440619881', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440619829', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440619761', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440619693', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440619631', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440548409', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440548336', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440548267', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440548171', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440548103', 'https://github.com/ursacomputing/crossbow/actions/runs/4274146995/jobs/7440543007']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274146118/jobs/7440540943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604183190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-focal-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4274142330/jobs/7440533633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604190373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4274141913/jobs/7440532620'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11604184767'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4274149495/jobs/7440548774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11604187109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274144996/jobs/7440538824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274144293/jobs/7440537112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274149823/jobs/7440549682'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274139971/jobs/7440529279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274149672/jobs/7440549202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274150496/jobs/7440551515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274149925/jobs/7440550055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274144486/jobs/7440537512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274148099/jobs/7440546282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274143630/jobs/7440535930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604178124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274142251/jobs/7440533381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604191948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274150643/jobs/7440551795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604169683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274151829/jobs/7440553893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604157739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274145298/jobs/7440539436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11604182755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274140637/jobs/7440530284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274147775/jobs/7440545504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274142079/jobs/7440532975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274152277/jobs/7440555129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4274146395/jobs/7440541500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-26-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
diff --git a/csv_reports/nightly-packaging-2023-02-27-0.csv b/csv_reports/nightly-packaging-2023-02-27-0.csv
deleted file mode 100644
index 81f2af90cb8..00000000000
--- a/csv_reports/nightly-packaging-2023-02-27-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280437103/jobs/7452205539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618223436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280450436/jobs/7452234507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618247762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280437751/jobs/7452206848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618224630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280443652/jobs/7452219841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280439579/jobs/7452210662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618236448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280450905/jobs/7452235587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11618234058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280439049/jobs/7452209499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280438544/jobs/7452208417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11618262554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11622267618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11621195590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11620853743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11620739327'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11623504309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11623173629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11623268604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11620013486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11621077686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11623102738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11621388303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11624520895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11624125053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11621437888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11621549221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11621960667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11624322103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280453004/jobs/7452240553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618200253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280440923/jobs/7452213812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618193185'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280435485/jobs/7452202053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4280446608/jobs/7452226820', 'https://github.com/ursacomputing/crossbow/actions/runs/4280446608/jobs/7452226648', 'https://github.com/ursacomputing/crossbow/actions/runs/4280446608/jobs/7452226468', 'https://github.com/ursacomputing/crossbow/actions/runs/4280446608/jobs/7452226349']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280432585/jobs/7452195461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4280436716/jobs/7453502711', 'https://github.com/ursacomputing/crossbow/actions/runs/4280436716/jobs/7452205158', 'https://github.com/ursacomputing/crossbow/actions/runs/4280436716/jobs/7452205017', 'https://github.com/ursacomputing/crossbow/actions/runs/4280436716/jobs/7452204887', 'https://github.com/ursacomputing/crossbow/actions/runs/4280436716/jobs/7452204746']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-java-jars,github,{},java-jars/github.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4280430676/jobs/7452191261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280428776/jobs/7452186662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-python-sdist,github,{},python-sdist/github.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7453380691', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452842958', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452842742', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452842559', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452842336', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452842092', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452841821', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452544888', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452445788', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452445633', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452445507', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452445322', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452445129', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452444992', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452444849', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452444666', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452226549', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452226373', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452226239', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452226045', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452225908', 'https://github.com/ursacomputing/crossbow/actions/runs/4280441145/jobs/7452214392']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280426490/jobs/7452181839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618230156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-focal-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4280431734/jobs/7452193755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618195685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4280429705/jobs/7452188718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11618244462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4280452219/jobs/7452238880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11618211798'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280426921/jobs/7452182755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280448201/jobs/7452229929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280447303/jobs/7452227897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280452606/jobs/7452239716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280445914/jobs/7452224622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280445068/jobs/7452223016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280453905/jobs/7452242863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280430082/jobs/7452189702'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280451586/jobs/7452237390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280430377/jobs/7452190512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618241998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280456158/jobs/7452248471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618222453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280456538/jobs/7452249585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618202679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4280456834/jobs/7452250540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618199162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280454420/jobs/7452243548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11618183626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280447775/jobs/7452228906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280443328/jobs/7452219238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280440435/jobs/7452212577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280451947/jobs/7452238233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4280453443/jobs/7452241413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-27-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,db60be2bc2e1fc9aec43bb632be894bb8da6c77b
diff --git a/csv_reports/nightly-packaging-2023-02-28-0.csv b/csv_reports/nightly-packaging-2023-02-28-0.csv
deleted file mode 100644
index 8fac7d3a28f..00000000000
--- a/csv_reports/nightly-packaging-2023-02-28-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291045635/jobs/7475743075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648794437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291027799/jobs/7475701311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648782950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291020759/jobs/7475685962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648804782'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291038069/jobs/7475724610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291017867/jobs/7475679067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648848883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291036499/jobs/7475720879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648793457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291030487/jobs/7475707444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291046847/jobs/7475746544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11648866644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11652059334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11651697581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11654433120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11651102527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11650966541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11650449152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11651175415'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11650596247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11652198531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11655931188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11654602005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11654508698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11652153061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11654223285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11652246152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11655041904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11654427719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291030928/jobs/7475708417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648830437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291023974/jobs/7475692887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648864841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291018787/jobs/7475680941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4291020337/jobs/7475685203', 'https://github.com/ursacomputing/crossbow/actions/runs/4291020337/jobs/7475685093', 'https://github.com/ursacomputing/crossbow/actions/runs/4291020337/jobs/7475684953', 'https://github.com/ursacomputing/crossbow/actions/runs/4291020337/jobs/7475684814']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291034098/jobs/7475715684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4291037201/jobs/7476631164', 'https://github.com/ursacomputing/crossbow/actions/runs/4291037201/jobs/7475723342', 'https://github.com/ursacomputing/crossbow/actions/runs/4291037201/jobs/7475723152', 'https://github.com/ursacomputing/crossbow/actions/runs/4291037201/jobs/7475723002', 'https://github.com/ursacomputing/crossbow/actions/runs/4291037201/jobs/7475722766']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-java-jars,github,{},java-jars/github.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4291024828/jobs/7475694637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291042248/jobs/7475734187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-python-sdist,github,{},python-sdist/github.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7476884120', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7476399166', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7476399033', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7476398826', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7476398632', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7476398457', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7476398257', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7476045992', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475941922', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475941740', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475941561', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475941423', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475941284', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475941145', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475940996', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475940829', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475722792', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475722648', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475722476', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475722307', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475722145', 'https://github.com/ursacomputing/crossbow/actions/runs/4291031339/jobs/7475709482']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291044059/jobs/7475738333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648822722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-ubuntu-focal-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4291019225/jobs/7475682106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648860349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4291031722/jobs/7475710548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11648777033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4291023143/jobs/7475691012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11648803746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291028942/jobs/7475703886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291035639/jobs/7475719013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291026385/jobs/7475698292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291038500/jobs/7475725634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291044499/jobs/7475739644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291028371/jobs/7475702576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291019622/jobs/7475683298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291039881/jobs/7475728561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291038923/jobs/7475726439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291037596/jobs/7475723579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648823841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291030119/jobs/7475706578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648863073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291041140/jobs/7475731368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648797932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291043111/jobs/7475736183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648795720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291029207/jobs/7475704519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11648849941'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291026834/jobs/7475699198'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291015384/jobs/7475673894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291036052/jobs/7475719863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291040299/jobs/7475729522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,0e752c8655685a0108c3eed3de27e7981db688c7
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4291019947/jobs/7475683902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-02-28-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,0e752c8655685a0108c3eed3de27e7981db688c7
diff --git a/csv_reports/nightly-packaging-2023-03-01-0.csv b/csv_reports/nightly-packaging-2023-03-01-0.csv
deleted file mode 100644
index b3ff007f8f7..00000000000
--- a/csv_reports/nightly-packaging-2023-03-01-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301579732/jobs/7498973834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679210685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301578881/jobs/7498971869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679255146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301595665/jobs/7499010161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679194862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301579368/jobs/7498972835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301586820/jobs/7498990187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679271153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301603163/jobs/7499029838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679273871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301592296/jobs/7499002684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301584990/jobs/7498985819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11679276144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11685350900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11685129691'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11683238143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11684931277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11681661426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11683213184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11681392679'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11681606574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11684256203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11682490444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11682390966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11682598219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11682680723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11682581187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11686241861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11686566154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11682714872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301581681/jobs/7498978447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679264722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301591933/jobs/7499001671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679256397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301597695/jobs/7499015461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4301603981/jobs/7499032424', 'https://github.com/ursacomputing/crossbow/actions/runs/4301603981/jobs/7499032287', 'https://github.com/ursacomputing/crossbow/actions/runs/4301603981/jobs/7499032115', 'https://github.com/ursacomputing/crossbow/actions/runs/4301603981/jobs/7499031937']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301577478/jobs/7498968723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4301599598/jobs/7500169299', 'https://github.com/ursacomputing/crossbow/actions/runs/4301599598/jobs/7499022645', 'https://github.com/ursacomputing/crossbow/actions/runs/4301599598/jobs/7499022427', 'https://github.com/ursacomputing/crossbow/actions/runs/4301599598/jobs/7499020235', 'https://github.com/ursacomputing/crossbow/actions/runs/4301599598/jobs/7499020051']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-java-jars,github,{},java-jars/github.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4301606885/jobs/7499038789'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301593159/jobs/7499004703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-python-sdist,github,{},python-sdist/github.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7500619075', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7500129017', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7500128758', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7500128524', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7500128318', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7500128128', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7500127835', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7499794160', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7499673245', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7499673110', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7499672884', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7499672582', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7499672392', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7499672155', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7499671943', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7499671567', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7498974333', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7498974176', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7498974003', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7498973846', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7498973616', 'https://github.com/ursacomputing/crossbow/actions/runs/4301574607/jobs/7498962713']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301595048/jobs/7499008660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679223999'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301582059/jobs/7498979342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679248315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301596409/jobs/7499012120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679259156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301587344/jobs/7498991199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679214903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301588349/jobs/7498993493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301575063/jobs/7498963501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301584505/jobs/7498984700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301586331/jobs/7498988911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301602357/jobs/7499027580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301605406/jobs/7499035329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301580095/jobs/7498974724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301591166/jobs/7498999748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301580933/jobs/7498976637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301580467/jobs/7498975527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679197231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301590281/jobs/7498997747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679239560'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301590718/jobs/7498998746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679286696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301578018/jobs/7498969756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679189796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301602728/jobs/7499028622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11679222537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301583596/jobs/7498982867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301604448/jobs/7499033025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301599057/jobs/7499018715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301606295/jobs/7499037284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4301601135/jobs/7499023777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,f9a1d198f64f888f9dcf716174b43d8a116dde13
diff --git a/csv_reports/nightly-packaging-2023-03-02-0.csv b/csv_reports/nightly-packaging-2023-03-02-0.csv
deleted file mode 100644
index a26c9760537..00000000000
--- a/csv_reports/nightly-packaging-2023-03-02-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312082309/jobs/7522198683'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709568075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312051312/jobs/7522133480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709561979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312062268/jobs/7522154604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709620109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312079072/jobs/7522189653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312052622/jobs/7522135497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709565242'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312077001/jobs/7522185485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709551045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312077479/jobs/7522186338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312071897/jobs/7522174712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11711973402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11712887965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11714538543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11712627469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11715686621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11711992479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11711794656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11714662347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11711894626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11712520792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11715919146'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11712759165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11713108882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11712805714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11713175513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11716075153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11715845115'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11715097749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312054952/jobs/7522140220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709591740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312050783/jobs/7522132491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709576783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312080884/jobs/7522194593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4312069422/jobs/7522170029', 'https://github.com/ursacomputing/crossbow/actions/runs/4312069422/jobs/7522169881', 'https://github.com/ursacomputing/crossbow/actions/runs/4312069422/jobs/7522169717', 'https://github.com/ursacomputing/crossbow/actions/runs/4312069422/jobs/7522169515']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312081284/jobs/7522195973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4312057642/jobs/7523262114', 'https://github.com/ursacomputing/crossbow/actions/runs/4312057642/jobs/7522146057', 'https://github.com/ursacomputing/crossbow/actions/runs/4312057642/jobs/7522145923', 'https://github.com/ursacomputing/crossbow/actions/runs/4312057642/jobs/7522145787', 'https://github.com/ursacomputing/crossbow/actions/runs/4312057642/jobs/7522145658']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-java-jars,github,{},java-jars/github.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4312049005/jobs/7522128262'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4312064159/jobs/7522158513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-python-sdist,github,{},python-sdist/github.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7523318448', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522782866', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522782681', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522782435', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522782241', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522782081', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522781843', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522521663', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522414411', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522414228', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522414073', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522413905', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522413721', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522413443', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522413249', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522413038', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522204312', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522204123', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522203927', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522203734', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522203449', 'https://github.com/ursacomputing/crossbow/actions/runs/4312078546/jobs/7522188580']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312064999/jobs/7522160377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709628152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312082814/jobs/7522199845'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709621629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4312063787/jobs/7522157668'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709631846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4312060262/jobs/7522150553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709597301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312065896/jobs/7522162058'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312053195/jobs/7522136558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312049755/jobs/7522129943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312070522/jobs/7522171996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312073521/jobs/7522177666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312074028/jobs/7522178858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312067519/jobs/7522165296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312068484/jobs/7522167291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312081584/jobs/7522196699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312076616/jobs/7522184589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709554868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312074441/jobs/7522179758'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709559399'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312056808/jobs/7522143705'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709587112'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312050385/jobs/7522131625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709588774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312080458/jobs/7522193374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11709585342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312075803/jobs/7522182829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312057990/jobs/7522146357'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312069796/jobs/7522170489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312061330/jobs/7522152609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4312072484/jobs/7522175716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-02-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,e8107bfa58ef5ad50c5c40d3f54bb7a96bdf2d0e
diff --git a/csv_reports/nightly-packaging-2023-03-03-0.csv b/csv_reports/nightly-packaging-2023-03-03-0.csv
deleted file mode 100644
index 5ed0f1c46d2..00000000000
--- a/csv_reports/nightly-packaging-2023-03-03-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321654441/jobs/7543129843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737552405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321664834/jobs/7543153528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737549240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321670604/jobs/7543167975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737535874'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321657459/jobs/7543136157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321675681/jobs/7543180167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737526513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321663170/jobs/7543149406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737507055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321664391/jobs/7543152167'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321673439/jobs/7543175012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11737556952'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11739862539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11742848481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11740874111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11739263825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11739358338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11739035004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11741415749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11742277603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11741801843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11740975451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11740712788'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11740827190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11742137732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11740505510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11744857055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-win-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11742982435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11740379871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321654006/jobs/7543128983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737482915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321665698/jobs/7543155054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737481433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321654796/jobs/7543130943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4321674214/jobs/7543177352', 'https://github.com/ursacomputing/crossbow/actions/runs/4321674214/jobs/7543177202', 'https://github.com/ursacomputing/crossbow/actions/runs/4321674214/jobs/7543177102', 'https://github.com/ursacomputing/crossbow/actions/runs/4321674214/jobs/7543176948']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321669524/jobs/7543165173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4321663548/jobs/7544286756', 'https://github.com/ursacomputing/crossbow/actions/runs/4321663548/jobs/7543150922', 'https://github.com/ursacomputing/crossbow/actions/runs/4321663548/jobs/7543150763', 'https://github.com/ursacomputing/crossbow/actions/runs/4321663548/jobs/7543150590', 'https://github.com/ursacomputing/crossbow/actions/runs/4321663548/jobs/7543150436']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-java-jars,github,{},java-jars/github.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4321664105/jobs/7543151820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321659941/jobs/7543141792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-python-sdist,github,{},python-sdist/github.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7544308897', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543879955', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543879769', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543879571', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543879369', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543879164', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543878939', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543465171', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543368882', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543368738', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543368585', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543368472', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543368335', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543368203', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543368080', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543367898', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543176783', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543176611', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543176455', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543176363', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543176203', 'https://github.com/ursacomputing/crossbow/actions/runs/4321669190/jobs/7543164513']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321660755/jobs/7543143708'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737539286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321662844/jobs/7543148600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737525287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-ubuntu-jammy-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4321668836/jobs/7543163247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737540349'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4321670253/jobs/7543167175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737473556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321650878/jobs/7543122549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321656551/jobs/7543134050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321651686/jobs/7543124247'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321649665/jobs/7543119800'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321677499/jobs/7543184697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321656980/jobs/7543134904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321653606/jobs/7543128319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321674539/jobs/7543177684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321672851/jobs/7543173334'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321671714/jobs/7543170392'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737498747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321674881/jobs/7543178517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737509675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321658219/jobs/7543138070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737545042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321676796/jobs/7543182856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737489170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321667034/jobs/7543158329'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11737517754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321653173/jobs/7543127403'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321668496/jobs/7543162209'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321667444/jobs/7543159281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321669918/jobs/7543166054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4321661158/jobs/7543144711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-03-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,50fb5b0df84a3ccaa665965e36a6e757d1af98f1
diff --git a/csv_reports/nightly-packaging-2023-03-04-0.csv b/csv_reports/nightly-packaging-2023-03-04-0.csv
deleted file mode 100644
index 06c259082d3..00000000000
--- a/csv_reports/nightly-packaging-2023-03-04-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330176218/jobs/7561229320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761222245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330174366/jobs/7561225988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761217671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330180806/jobs/7561239321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761217220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330172323/jobs/7561221188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330178890/jobs/7561235181'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761211499'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330179170/jobs/7561235819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761209998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4330170709/jobs/7561217180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330168348/jobs/7561212835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11761253993'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11762991613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11762306729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11762154639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11762661624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11762615075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11762709342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11761739517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11762741931'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11763081001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11762097260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11762122926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11762118410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11762077156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11762121177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11763161270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11762461053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11762275840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330171229/jobs/7561218523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761235472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330173737/jobs/7561224307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761211911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330176806/jobs/7561230951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4330168156/jobs/7561212555', 'https://github.com/ursacomputing/crossbow/actions/runs/4330168156/jobs/7561212513', 'https://github.com/ursacomputing/crossbow/actions/runs/4330168156/jobs/7561212459', 'https://github.com/ursacomputing/crossbow/actions/runs/4330168156/jobs/7561212400']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330171408/jobs/7561218932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4330177238/jobs/7561585088', 'https://github.com/ursacomputing/crossbow/actions/runs/4330177238/jobs/7561232192', 'https://github.com/ursacomputing/crossbow/actions/runs/4330177238/jobs/7561232135', 'https://github.com/ursacomputing/crossbow/actions/runs/4330177238/jobs/7561232056', 'https://github.com/ursacomputing/crossbow/actions/runs/4330177238/jobs/7561231980']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-java-jars,github,{},java-jars/github.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4330166226/jobs/7561209126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4330169307/jobs/7561214834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-python-sdist,github,{},python-sdist/github.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561654523', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561520698', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561520636', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561520593', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561520529', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561520476', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561520398', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561385064', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561345574', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561345544', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561345510', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561345482', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561345454', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561345436', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561345411', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561345381', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561241314', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561241242', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561241190', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561241158', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561241080', 'https://github.com/ursacomputing/crossbow/actions/runs/4330179462/jobs/7561236457']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330175951/jobs/7561228894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761231206'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330178766/jobs/7561234826'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761241966'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-ubuntu-jammy-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4330167313/jobs/7561211085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761241543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4330176632/jobs/7561230549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761240425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330168620/jobs/7561213509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330176498/jobs/7561230166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330180646/jobs/7561238862'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330175207/jobs/7561227585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330177411/jobs/7561232362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330174191/jobs/7561225593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330173044/jobs/7561222409'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330167610/jobs/7561211507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330180222/jobs/7561237896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330167932/jobs/7561212057'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761222724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330179053/jobs/7561235575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761223200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330179628/jobs/7561236815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761218105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330177877/jobs/7561233207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761229891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330169110/jobs/7561214482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11761211138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330180440/jobs/7561238400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330178383/jobs/7561234035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330168817/jobs/7561213849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330172610/jobs/7561221589'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4330176381/jobs/7561229811'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-04-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,ce469c2d81b6578539fff02a6e1055a718d5f8ea
diff --git a/csv_reports/nightly-packaging-2023-03-05-0.csv b/csv_reports/nightly-packaging-2023-03-05-0.csv
deleted file mode 100644
index 6fe6034f126..00000000000
--- a/csv_reports/nightly-packaging-2023-03-05-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335183328/jobs/7569578535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11770985438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335192118/jobs/7569598152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11771005244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335185747/jobs/7569585044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11771001543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335179696/jobs/7569571261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335182152/jobs/7569575951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11770983825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335184666/jobs/7569582401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11771002055'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335184372/jobs/7569581305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335183924/jobs/7569579919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11771022189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11772690068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11771864969'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11772760784'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11772789519'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11772733426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11772512918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11771523136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11771524557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11771917476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-osx-arm64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11771939492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11771940923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11772020238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11772923177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11771970795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11772582378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11772161792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11772381303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335184535/jobs/7569582003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11770994439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335184787/jobs/7569582786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11771008864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335192000/jobs/7569597755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4335186176/jobs/7569585951', 'https://github.com/ursacomputing/crossbow/actions/runs/4335186176/jobs/7569585864', 'https://github.com/ursacomputing/crossbow/actions/runs/4335186176/jobs/7569585787', 'https://github.com/ursacomputing/crossbow/actions/runs/4335186176/jobs/7569585690']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335184882/jobs/7569583221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4335179404/jobs/7569887382', 'https://github.com/ursacomputing/crossbow/actions/runs/4335179404/jobs/7569570571', 'https://github.com/ursacomputing/crossbow/actions/runs/4335179404/jobs/7569570521', 'https://github.com/ursacomputing/crossbow/actions/runs/4335179404/jobs/7569570478', 'https://github.com/ursacomputing/crossbow/actions/runs/4335179404/jobs/7569570430']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-java-jars,github,{},java-jars/github.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4335189323/jobs/7569592118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335191265/jobs/7569595900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-python-sdist,github,{},python-sdist/github.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7570038938', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569880585', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569880542', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569880494', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569880440', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569880403', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569880327', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569674833', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569674780', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569602045', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569601983', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569601922', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569601845', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569601749', 'https://github.com/ursacomputing/crossbow/actions/runs/4335191632/jobs/7569596844']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335191848/jobs/7569597418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11771001153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335187209/jobs/7569588062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11770982751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-ubuntu-jammy-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4335187432/jobs/7569588681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11770997473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4335182258/jobs/7569576306'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11770995181'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335190114/jobs/7569593935'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335178941/jobs/7569569370'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335178363/jobs/7569568345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335192352/jobs/7569598748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335182371/jobs/7569576695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335189031/jobs/7569591379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335179824/jobs/7569571494'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335192536/jobs/7569599051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335182696/jobs/7569577398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335183653/jobs/7569579233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11770980315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335178654/jobs/7569568837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11771005905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335179283/jobs/7569570100'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11770987320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335177565/jobs/7569567134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11770983249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335181889/jobs/7569575035'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11771004547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335189572/jobs/7569592875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335186770/jobs/7569586929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335182955/jobs/7569577890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335189802/jobs/7569593412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4335178034/jobs/7569567779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-05-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,237705bf17486cfc35ab7d1ddfe59dd60f042ab8
diff --git a/csv_reports/nightly-packaging-2023-03-06-0.csv b/csv_reports/nightly-packaging-2023-03-06-0.csv
deleted file mode 100644
index 152dd061377..00000000000
--- a/csv_reports/nightly-packaging-2023-03-06-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341447106/jobs/7581054007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784781696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341460246/jobs/7581084402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784782517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341457323/jobs/7581077540'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784754413'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341442342/jobs/7581043929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341449263/jobs/7581058518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784814204'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341448746/jobs/7581057596'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784792619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341459752/jobs/7581083252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341454512/jobs/7581069653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11786991000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11787572347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11789072418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11787770205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11786823312'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11788724922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11786914175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11789300236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11786836881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11787630193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11788103861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11790529033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11791037898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11790071791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11788301785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11793748735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11789630951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11792693944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341439814/jobs/7581037699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784799184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341450685/jobs/7581061446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784835608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341455526/jobs/7581072017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4341457622/jobs/7581078845', 'https://github.com/ursacomputing/crossbow/actions/runs/4341457622/jobs/7581078669', 'https://github.com/ursacomputing/crossbow/actions/runs/4341457622/jobs/7581078504', 'https://github.com/ursacomputing/crossbow/actions/runs/4341457622/jobs/7581078365']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341432268/jobs/7581020958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4341450290/jobs/7582202736', 'https://github.com/ursacomputing/crossbow/actions/runs/4341450290/jobs/7581060992', 'https://github.com/ursacomputing/crossbow/actions/runs/4341450290/jobs/7581060833', 'https://github.com/ursacomputing/crossbow/actions/runs/4341450290/jobs/7581060680', 'https://github.com/ursacomputing/crossbow/actions/runs/4341450290/jobs/7581060545']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-java-jars,github,{},java-jars/github.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4341451311/jobs/7581062957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341430939/jobs/7581017780'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-python-sdist,github,{},python-sdist/github.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7582258703', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581747136', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581746932', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581746715', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581746522', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581746361', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581746036', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581371463', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581275849', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581275708', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581275552', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581275385', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581275230', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581275036', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581274898', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581274737', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581046099', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581045939', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581045778', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581045595', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581045410', 'https://github.com/ursacomputing/crossbow/actions/runs/4341437770/jobs/7581033802']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341440705/jobs/7581039588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784823303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341438339/jobs/7581034810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784757653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-ubuntu-jammy-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4341452037/jobs/7581064633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784762640'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4341435614/jobs/7581028221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784780455'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341445110/jobs/7581049382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341443630/jobs/7581046723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341454070/jobs/7581068900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341437326/jobs/7581032666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341435980/jobs/7581029151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341433820/jobs/7581024046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341439337/jobs/7581036790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341460988/jobs/7581086669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341456962/jobs/7581076383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341450936/jobs/7581062118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784798054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341449810/jobs/7581059587'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784777996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341432654/jobs/7581021775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784762948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341446296/jobs/7581052096'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784813188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341459251/jobs/7581082266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11784752320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341456274/jobs/7581074164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341457950/jobs/7581079298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341452434/jobs/7581065412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341451687/jobs/7581063671'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4341436611/jobs/7581030846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-06-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,d5b3b4737838774db658d3c488fcd3e72bc13f7e
diff --git a/csv_reports/nightly-packaging-2023-03-07-0.csv b/csv_reports/nightly-packaging-2023-03-07-0.csv
deleted file mode 100644
index 7d69e3e2ef7..00000000000
--- a/csv_reports/nightly-packaging-2023-03-07-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352169388/jobs/7604616707'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815615829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352162349/jobs/7604601264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815585203'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352161965/jobs/7604600330'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815659126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352169738/jobs/7604617480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352161004/jobs/7604598294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815654244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352184779/jobs/7604650642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815585546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352193897/jobs/7604674073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352163148/jobs/7604603369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11819616978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-linux-aarch64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/11815659631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11824468114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-linux-aarch64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11815654664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11822895451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11824379672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11820739104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-linux-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11815629864'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11824352411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11821565689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11823353827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-osx-arm64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/11815637858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11822326395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-osx-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11815645778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11824612104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11823730839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-win-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/11815623980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11823424022'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352164264/jobs/7604606104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815647310'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352179972/jobs/7604639873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815610617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352186235/jobs/7604654850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4352183431/jobs/7604648030', 'https://github.com/ursacomputing/crossbow/actions/runs/4352183431/jobs/7604647870', 'https://github.com/ursacomputing/crossbow/actions/runs/4352183431/jobs/7604647680', 'https://github.com/ursacomputing/crossbow/actions/runs/4352183431/jobs/7604647476']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352192800/jobs/7604671536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4352169094/jobs/7605929984', 'https://github.com/ursacomputing/crossbow/actions/runs/4352169094/jobs/7604616485', 'https://github.com/ursacomputing/crossbow/actions/runs/4352169094/jobs/7604616296', 'https://github.com/ursacomputing/crossbow/actions/runs/4352169094/jobs/7604616167', 'https://github.com/ursacomputing/crossbow/actions/runs/4352169094/jobs/7604616032']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-java-jars,github,{},java-jars/github.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4352176289/jobs/7604631792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352174542/jobs/7604627670'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-python-sdist,github,{},python-sdist/github.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7606806414', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7605343354', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7605343154', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7605342901', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7605342702', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7605342527', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7605342142', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604992440', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604889889', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604889715', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604889547', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604889353', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604889204', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604889026', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604888875', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604888661', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604689953', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604689782', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604689530', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604689363', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604689131', 'https://github.com/ursacomputing/crossbow/actions/runs/4352194606/jobs/7604675931']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352179698/jobs/7604639119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815655319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352172934/jobs/7604623742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815646028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-ubuntu-jammy-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4352177317/jobs/7604634714'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815650195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4352170717/jobs/7604619398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815662084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352185458/jobs/7604652690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352181074/jobs/7604642578'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352189900/jobs/7604664043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352163466/jobs/7604604065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352160370/jobs/7604597177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352185789/jobs/7604653643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352183955/jobs/7604648568'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352167442/jobs/7604612001'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352182805/jobs/7604646384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352186664/jobs/7604655972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815584573'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352168369/jobs/7604614163'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815633911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352168741/jobs/7604615100'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815605543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352191436/jobs/7604668509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815597895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352161454/jobs/7604599351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11815600316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352171798/jobs/7604621562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352187157/jobs/7604657070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352173411/jobs/7604624951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352167987/jobs/7604613078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4352165034/jobs/7604607352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-07-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,fc950192ae7b801a76adc3b3de410dc22da83fd4
diff --git a/csv_reports/nightly-packaging-2023-03-08-0.csv b/csv_reports/nightly-packaging-2023-03-08-0.csv
deleted file mode 100644
index 578b9b4af05..00000000000
--- a/csv_reports/nightly-packaging-2023-03-08-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362535220/jobs/7627539849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845605896'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362514055/jobs/7627493771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845601474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362516353/jobs/7627498230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845627527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362537135/jobs/7627544505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362519804/jobs/7627505506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845579322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362517251/jobs/7627500264'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845646025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362532318/jobs/7627533316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362526632/jobs/7627520755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11848273179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11848201257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11849440079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11849221912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11849427749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11847580381'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11849019908'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11847761034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11847063438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11851544172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11848804659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11852256342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11848794021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11851062244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11851946160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11849520661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11849588367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11851493591'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362530122/jobs/7627528527'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845575898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362540451/jobs/7627553073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845580481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362516824/jobs/7627499266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4362524420/jobs/7627516196', 'https://github.com/ursacomputing/crossbow/actions/runs/4362524420/jobs/7627516089', 'https://github.com/ursacomputing/crossbow/actions/runs/4362524420/jobs/7627515985', 'https://github.com/ursacomputing/crossbow/actions/runs/4362524420/jobs/7627515874']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362521007/jobs/7627507991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4362531960/jobs/7628606453', 'https://github.com/ursacomputing/crossbow/actions/runs/4362531960/jobs/7627532811', 'https://github.com/ursacomputing/crossbow/actions/runs/4362531960/jobs/7627532676', 'https://github.com/ursacomputing/crossbow/actions/runs/4362531960/jobs/7627532544', 'https://github.com/ursacomputing/crossbow/actions/runs/4362531960/jobs/7627532380']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-java-jars,github,{},java-jars/github.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4362534077/jobs/7627537296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362538944/jobs/7627549686'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-python-sdist,github,{},python-sdist/github.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7628449627', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7628151671', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7628151458', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7628151256', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7628151065', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7628150866', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7628150626', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627834532', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627751799', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627751687', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627751556', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627751429', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627751283', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627751155', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627751036', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627750869', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627529603', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627529457', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627529295', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627529137', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627528951', 'https://github.com/ursacomputing/crossbow/actions/runs/4362526232/jobs/7627519797']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362531556/jobs/7627531380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845609418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4362539279/jobs/7627550484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845645219'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362534822/jobs/7627538938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845571473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4362533751/jobs/7627536542'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845605412'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362524823/jobs/7627516590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362534477/jobs/7627538240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362539732/jobs/7627551350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362538576/jobs/7627548977'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362541285/jobs/7627555178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362540136/jobs/7627552306'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362518541/jobs/7627502950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362514932/jobs/7627495438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362514141/jobs/7627493879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362542556/jobs/7627558448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845595875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362525587/jobs/7627518291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845568184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362531098/jobs/7627530396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845629183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362530595/jobs/7627529421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845563903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362523317/jobs/7627513346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11845570267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362524106/jobs/7627515063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362532598/jobs/7627533938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362522675/jobs/7627511959'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362537816/jobs/7627546710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4362520150/jobs/7627506320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-08-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,22f2980e9ba5de684c51d6e92a74d449cb405e3d
diff --git a/csv_reports/nightly-packaging-2023-03-09-0.csv b/csv_reports/nightly-packaging-2023-03-09-0.csv
deleted file mode 100644
index a3a419f46f1..00000000000
--- a/csv_reports/nightly-packaging-2023-03-09-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372556569/jobs/7649617240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874272981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372545353/jobs/7649591725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874269441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372531908/jobs/7649561736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874215432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372533612/jobs/7649565104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372555630/jobs/7649614945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874252635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372551533/jobs/7649605773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874214350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372536892/jobs/7649572895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372540006/jobs/7649579796'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11877724595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11877301718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11881078268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11877534253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11880104695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11878089454'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11879299196'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11876795189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11876011424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11877370304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11877644581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11877723598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11881296045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11878018496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11880928749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11878290333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11880560125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11877737442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372537951/jobs/7649575331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874213496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372527692/jobs/7649552295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874232223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372550132/jobs/7649602529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4372558225/jobs/7649622275', 'https://github.com/ursacomputing/crossbow/actions/runs/4372558225/jobs/7649622065', 'https://github.com/ursacomputing/crossbow/actions/runs/4372558225/jobs/7649621916', 'https://github.com/ursacomputing/crossbow/actions/runs/4372558225/jobs/7649621783']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372537686/jobs/7649574711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4372527259/jobs/7650816479', 'https://github.com/ursacomputing/crossbow/actions/runs/4372527259/jobs/7649551824', 'https://github.com/ursacomputing/crossbow/actions/runs/4372527259/jobs/7649551602', 'https://github.com/ursacomputing/crossbow/actions/runs/4372527259/jobs/7649551428', 'https://github.com/ursacomputing/crossbow/actions/runs/4372527259/jobs/7649551230']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-java-jars,github,{},java-jars/github.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4372553055/jobs/7649609199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372539159/jobs/7649578080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-python-sdist,github,{},python-sdist/github.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7650743234', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7650370185', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7650370022', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7650369898', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7650369709', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7650369506', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7650369309', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649924865', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649807560', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649807372', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649807212', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649807102', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649806956', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649806790', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649806589', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649806362', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649610733', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649610616', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649610503', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649610334', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649609970', 'https://github.com/ursacomputing/crossbow/actions/runs/4372547582/jobs/7649596890']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372535237/jobs/7649568805'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874238130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372557002/jobs/7649618529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874241523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372551885/jobs/7649606469'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874218226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4372538726/jobs/7649577046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874276799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372549215/jobs/7649600660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372542759/jobs/7649585881'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372546681/jobs/7649594852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372548800/jobs/7649599723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372541588/jobs/7649583027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372556126/jobs/7649616111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372528180/jobs/7649553114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372534106/jobs/7649566161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372529060/jobs/7649555193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372553743/jobs/7649610790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874283747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372544143/jobs/7649589027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874271823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372557747/jobs/7649620582'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874245867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372544550/jobs/7649589922'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874259647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372540503/jobs/7649580899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11874265795'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372533128/jobs/7649564164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372557437/jobs/7649619792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372542407/jobs/7649584794'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372534506/jobs/7649567170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4372553314/jobs/7649609936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-09-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,b679a96d426f4df1a2d15d452f312c968cdfc8f6
diff --git a/csv_reports/nightly-packaging-2023-03-10-0.csv b/csv_reports/nightly-packaging-2023-03-10-0.csv
deleted file mode 100644
index 7d4ea199b52..00000000000
--- a/csv_reports/nightly-packaging-2023-03-10-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4382738745/jobs/7672127786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903681665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382752826/jobs/7672160416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903665358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382739638/jobs/7672129657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903631642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382750702/jobs/7672154810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382735582/jobs/7672120899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903662271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382756585/jobs/7672170623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903670459'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382732836/jobs/7672115061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382728724/jobs/7672106348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11906982243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11909047855'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11907196932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11908419021'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11905667038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11905321622'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11908802190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11908842189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11905100193'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11909640996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11909785374'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11906881929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11907257617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11908819760'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11906907419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11906935883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11907068749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11906611207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382756167/jobs/7672169557'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903689164'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382738789/jobs/7672127882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903621888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382746424/jobs/7672144689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4382745844/jobs/7672143878', 'https://github.com/ursacomputing/crossbow/actions/runs/4382745844/jobs/7672143745', 'https://github.com/ursacomputing/crossbow/actions/runs/4382745844/jobs/7672143590', 'https://github.com/ursacomputing/crossbow/actions/runs/4382745844/jobs/7672143465']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382737854/jobs/7672126009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4382725415/jobs/7673161778', 'https://github.com/ursacomputing/crossbow/actions/runs/4382725415/jobs/7672099596', 'https://github.com/ursacomputing/crossbow/actions/runs/4382725415/jobs/7672099463', 'https://github.com/ursacomputing/crossbow/actions/runs/4382725415/jobs/7672099308', 'https://github.com/ursacomputing/crossbow/actions/runs/4382725415/jobs/7672099120']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-java-jars,github,{},java-jars/github.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4382744495/jobs/7672140353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382738311/jobs/7672127712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-python-sdist,github,{},python-sdist/github.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7673443001', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7673169528', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7673169364', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7673169150', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7673168975', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7673168845', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7673168675', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672484867', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672393999', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672393895', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672393790', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672393674', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672393559', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672393474', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672393357', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672393191', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672149907', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672149727', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672149601', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672149471', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672149304', 'https://github.com/ursacomputing/crossbow/actions/runs/4382743861/jobs/7672139002']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382751568/jobs/7672157250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903613971'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382749577/jobs/7672151639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903655479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382733802/jobs/7672117283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903605792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4382737417/jobs/7672125144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903686725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382726535/jobs/7672101672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382746800/jobs/7672145634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382749031/jobs/7672150266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382748554/jobs/7672149275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382747570/jobs/7672147315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382742793/jobs/7672136703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382746044/jobs/7672143734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382750362/jobs/7672153854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382753275/jobs/7672161666'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382740563/jobs/7672131759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903674603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382754770/jobs/7672165612'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903676783'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382729811/jobs/7672108590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903692917'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382736618/jobs/7672123302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903684324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382726962/jobs/7672102635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11903628440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382731181/jobs/7672111608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382741280/jobs/7672133522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382745205/jobs/7672141885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4382730210/jobs/7672109353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4382725769/jobs/7672100003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-10-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,4c05a3b4ea433961e1c546050f4f34356aacded6
diff --git a/csv_reports/nightly-packaging-2023-03-11-0.csv b/csv_reports/nightly-packaging-2023-03-11-0.csv
deleted file mode 100644
index fa31eab3ff0..00000000000
--- a/csv_reports/nightly-packaging-2023-03-11-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391453161/jobs/7690613624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927370103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391458908/jobs/7690624715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927398205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391451685/jobs/7690610077'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927389989'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391454975/jobs/7690616837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391452702/jobs/7690612493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927381823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391460555/jobs/7690627882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927378664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391449392/jobs/7690605292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391447145/jobs/7690599245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11927398501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11928156350'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11928296436'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11929017353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11927957024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11928728126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11928624297'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11928105906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11927927388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11929100488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11929009487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11928245065'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11928394291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11929228498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11928886803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11928267904'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-win-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11928074729'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11928572368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391454567/jobs/7690616010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927393019'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391460406/jobs/7690627508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927387623'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391453839/jobs/7690614727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4391458685/jobs/7690624452', 'https://github.com/ursacomputing/crossbow/actions/runs/4391458685/jobs/7690624382', 'https://github.com/ursacomputing/crossbow/actions/runs/4391458685/jobs/7690624332', 'https://github.com/ursacomputing/crossbow/actions/runs/4391458685/jobs/7690624283']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391449953/jobs/7690606567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4391449025/jobs/7690959449', 'https://github.com/ursacomputing/crossbow/actions/runs/4391449025/jobs/7690604580', 'https://github.com/ursacomputing/crossbow/actions/runs/4391449025/jobs/7690604511', 'https://github.com/ursacomputing/crossbow/actions/runs/4391449025/jobs/7690604436', 'https://github.com/ursacomputing/crossbow/actions/runs/4391449025/jobs/7690604369']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-java-jars,github,{},java-jars/github.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4391450520/jobs/7690607750'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391450903/jobs/7690608694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-python-sdist,github,{},python-sdist/github.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690982269', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690883552', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690883504', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690883457', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690883420', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690883383', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690883318', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690737895', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690711939', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690711914', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690711886', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690711860', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690711835', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690711803', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690711772', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690711718', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690604533', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690604459', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690604403', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690604329', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690604241', 'https://github.com/ursacomputing/crossbow/actions/runs/4391446094/jobs/7690597071']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391453017/jobs/7690613296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927375386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391460209/jobs/7690627105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927368480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391448793/jobs/7690603875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927383982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4391455531/jobs/7690617860'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927391195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391455721/jobs/7690618210'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391458320/jobs/7690623599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391450350/jobs/7690607342'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391449222/jobs/7690604803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391455901/jobs/7690618539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391456048/jobs/7690618797'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391459752/jobs/7690626276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391457114/jobs/7690620839'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391452047/jobs/7690611030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391452857/jobs/7690612884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927396318'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391459335/jobs/7690625434'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927397314'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391446925/jobs/7690598665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927394331'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391447622/jobs/7690600577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927393444'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391454084/jobs/7690615133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11927365261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391457949/jobs/7690622819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391451913/jobs/7690610618'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391449559/jobs/7690605689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391446301/jobs/7690597424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4391455165/jobs/7690617224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-11-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
diff --git a/csv_reports/nightly-packaging-2023-03-12-0.csv b/csv_reports/nightly-packaging-2023-03-12-0.csv
deleted file mode 100644
index 9f5eb64d25c..00000000000
--- a/csv_reports/nightly-packaging-2023-03-12-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396581205/jobs/7699120033'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937286732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396576668/jobs/7699110545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937286154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396581735/jobs/7699121237'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937291921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396583650/jobs/7699124569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396581435/jobs/7699121103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937282377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396583370/jobs/7699124056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937283878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396579223/jobs/7699116214'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396585844/jobs/7699128972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11938256056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11939473464'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11938483281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11938487891'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11938153064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11939068212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11938472442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11937903940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11937817508'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11938118064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11939132842'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11938243570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11938967677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11938236756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11938247970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11939572822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11938419747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11939380820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396575423/jobs/7699106885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937285324'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396586119/jobs/7699129493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937283351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396574126/jobs/7699104820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4396584887/jobs/7699127436', 'https://github.com/ursacomputing/crossbow/actions/runs/4396584887/jobs/7699127374', 'https://github.com/ursacomputing/crossbow/actions/runs/4396584887/jobs/7699127309', 'https://github.com/ursacomputing/crossbow/actions/runs/4396584887/jobs/7699127256']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396573102/jobs/7699101364'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4396580217/jobs/7699518216', 'https://github.com/ursacomputing/crossbow/actions/runs/4396580217/jobs/7699118431', 'https://github.com/ursacomputing/crossbow/actions/runs/4396580217/jobs/7699118351', 'https://github.com/ursacomputing/crossbow/actions/runs/4396580217/jobs/7699118232', 'https://github.com/ursacomputing/crossbow/actions/runs/4396580217/jobs/7699118156']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-java-jars,github,{},java-jars/github.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4396587626/jobs/7699133004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396579112/jobs/7699115854'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-python-sdist,github,{},python-sdist/github.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699519155', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699406504', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699406477', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699406442', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699406398', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699406345', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699406279', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699234055', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699201765', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699201733', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699201702', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699201668', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699201635', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699201605', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699201568', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699201498', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699137052', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699136977', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699136923', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699136863', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699136775', 'https://github.com/ursacomputing/crossbow/actions/runs/4396587101/jobs/7699132004']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396581985/jobs/7699121884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937315747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396573284/jobs/7699101703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937284822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396575940/jobs/7699108304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937304759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4396586904/jobs/7699131580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937303721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396586522/jobs/7699130477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396587417/jobs/7699132607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396579458/jobs/7699116950'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396584044/jobs/7699125398'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396586652/jobs/7699130899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396577496/jobs/7699112144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396576269/jobs/7699109362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396582810/jobs/7699123179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396578792/jobs/7699114938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396576524/jobs/7699110143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937307564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396583124/jobs/7699123619'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937280985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396581595/jobs/7699120867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937299372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396576435/jobs/7699109844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937313248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396576928/jobs/7699111143'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11937298967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396575716/jobs/7699107608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396580808/jobs/7699119225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396581030/jobs/7699119593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396577865/jobs/7699112736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4396584193/jobs/7699125721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-12-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,5b2fbade23eda9bc95b1e3854b19efff177cd0bd
diff --git a/csv_reports/nightly-packaging-2023-03-13-0.csv b/csv_reports/nightly-packaging-2023-03-13-0.csv
deleted file mode 100644
index 8405cac09ef..00000000000
--- a/csv_reports/nightly-packaging-2023-03-13-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402899080/jobs/7710585356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951044741'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402886673/jobs/7710558299'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951039111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402892333/jobs/7710571108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951008888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402890637/jobs/7710567621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402895139/jobs/7710577667'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951080512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402898614/jobs/7710584464'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951092757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402891851/jobs/7710570061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402903485/jobs/7710595069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11951131050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11954047909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11953959725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11955193696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11956695988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11957083859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11956812268'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11952706309'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11954922603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11954264049'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11958002027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11954534574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11958047007'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11954656547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11957381684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11955578162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11954714887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11954836942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402886116/jobs/7710557270'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951024647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402891225/jobs/7710568882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/11951010138'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402911818/jobs/7710615609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4402906577/jobs/7710602646', 'https://github.com/ursacomputing/crossbow/actions/runs/4402906577/jobs/7710602492', 'https://github.com/ursacomputing/crossbow/actions/runs/4402906577/jobs/7710602260', 'https://github.com/ursacomputing/crossbow/actions/runs/4402906577/jobs/7710602094']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402905676/jobs/7710599876'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4402916364/jobs/7711562383', 'https://github.com/ursacomputing/crossbow/actions/runs/4402916364/jobs/7710627443', 'https://github.com/ursacomputing/crossbow/actions/runs/4402916364/jobs/7710627180', 'https://github.com/ursacomputing/crossbow/actions/runs/4402916364/jobs/7710626846', 'https://github.com/ursacomputing/crossbow/actions/runs/4402916364/jobs/7710626680']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-java-jars,github,{},java-jars/github.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4402885523/jobs/7710556099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402909111/jobs/7710608000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-python-sdist,github,{},python-sdist/github.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7711470865', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7711076423', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7711076246', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7711076089', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7711075869', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7711075656', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7711075384', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710920283', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710812511', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710812355', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710812235', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710812077', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710811945', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710811798', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710811673', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710811496', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710629398', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710629244', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710629122', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710628982', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710628830', 'https://github.com/ursacomputing/crossbow/actions/runs/4402912243/jobs/7710616841']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402911095/jobs/7710613432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951054953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402892869/jobs/7710572243'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951047477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4402896734/jobs/7710580693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951093774'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4402909600/jobs/7710609194'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951090042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402895699/jobs/7710578790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402916004/jobs/7710625859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402905052/jobs/7710598543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402913997/jobs/7710621260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402903977/jobs/7710596005'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402906152/jobs/7710600964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402889729/jobs/7710565690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402888218/jobs/7710562151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402897438/jobs/7710581946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402889292/jobs/7710564824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951011893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402901019/jobs/7710589812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951081997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402890101/jobs/7710566586'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11950998524'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402893328/jobs/7710573343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951094687'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402887378/jobs/7710560054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11951046166'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402904514/jobs/7710597236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402898016/jobs/7710583037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402912728/jobs/7710618152'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402884975/jobs/7710555133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,29ec77901b6e5193af65723c463899fb9a140d6a
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4402894143/jobs/7710575439'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-13-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,29ec77901b6e5193af65723c463899fb9a140d6a
diff --git a/csv_reports/nightly-packaging-2023-03-14-0.csv b/csv_reports/nightly-packaging-2023-03-14-0.csv
deleted file mode 100644
index 5b4b719e108..00000000000
--- a/csv_reports/nightly-packaging-2023-03-14-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413737446/jobs/7734562315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982277472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413728784/jobs/7734543142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982272824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413729804/jobs/7734544962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982278812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413747313/jobs/7734583970'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413749060/jobs/7734587984'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982223186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413751322/jobs/7734593090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982256197'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413753338/jobs/7734597125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413754224/jobs/7734598740'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/11982327440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11989225869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11986666321'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11985536034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11986685736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11984180355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11986717579'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11984510291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11984016506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11985457652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11988136182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/11989758688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/11985923512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/11985941083'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/11985928098'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/11989066100'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/11986868652'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,f1eece9f276184063c9c35011e8243eb3b071233
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/11989442336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,f1eece9f276184063c9c35011e8243eb3b071233
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413726909/jobs/7734538704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982252226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413739171/jobs/7734566039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982257177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413749411/jobs/7734588746'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,f1eece9f276184063c9c35011e8243eb3b071233
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4413750204/jobs/7734590857', 'https://github.com/ursacomputing/crossbow/actions/runs/4413750204/jobs/7734590711', 'https://github.com/ursacomputing/crossbow/actions/runs/4413750204/jobs/7734590559', 'https://github.com/ursacomputing/crossbow/actions/runs/4413750204/jobs/7734590435']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,f1eece9f276184063c9c35011e8243eb3b071233
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413746635/jobs/7734582593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,f1eece9f276184063c9c35011e8243eb3b071233
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4413728259/jobs/7735696151', 'https://github.com/ursacomputing/crossbow/actions/runs/4413728259/jobs/7734542490', 'https://github.com/ursacomputing/crossbow/actions/runs/4413728259/jobs/7734542319', 'https://github.com/ursacomputing/crossbow/actions/runs/4413728259/jobs/7734542074', 'https://github.com/ursacomputing/crossbow/actions/runs/4413728259/jobs/7734541766']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-java-jars,github,{},java-jars/github.yml,f1eece9f276184063c9c35011e8243eb3b071233
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4413741016/jobs/7734569749'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,f1eece9f276184063c9c35011e8243eb3b071233
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413745663/jobs/7734580428'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-python-sdist,github,{},python-sdist/github.yml,f1eece9f276184063c9c35011e8243eb3b071233
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7736307701', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7735866137', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7735865889', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7735865674', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7735865429', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7735865211', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7735864871', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7735084234', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734940441', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734940198', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734939980', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734939707', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734939467', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734939277', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734939097', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734938778', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734588192', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734588058', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734587869', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734587718', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734587484', 'https://github.com/ursacomputing/crossbow/actions/runs/4413743878/jobs/7734576634']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,f1eece9f276184063c9c35011e8243eb3b071233
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413736725/jobs/7734560391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982238888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413740151/jobs/7734567937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982287513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413733812/jobs/7734553985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982229577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4413746153/jobs/7734581547'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982221946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413732225/jobs/7734550518'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413760064/jobs/7734613160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413757076/jobs/7734606118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413737105/jobs/7734561419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413736305/jobs/7734559520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413756226/jobs/7734603858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413757483/jobs/7734606994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413730639/jobs/7734546870'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413759122/jobs/7734610689'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413731392/jobs/7734548997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982299107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413755003/jobs/7734600744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982249704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413751755/jobs/7734593920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982248534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413756642/jobs/7734604910'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982283523'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413741552/jobs/7734570818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/11982230301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413755403/jobs/7734601825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413744279/jobs/7734577644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413731052/jobs/7734548151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413753820/jobs/7734597947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,f1eece9f276184063c9c35011e8243eb3b071233
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4413730251/jobs/7734545934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-14-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,f1eece9f276184063c9c35011e8243eb3b071233
diff --git a/csv_reports/nightly-packaging-2023-03-15-0.csv b/csv_reports/nightly-packaging-2023-03-15-0.csv
deleted file mode 100644
index e17f1d56141..00000000000
--- a/csv_reports/nightly-packaging-2023-03-15-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424301942/jobs/7757957732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013110131'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424298907/jobs/7757949345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013071769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424311954/jobs/7757981343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013111772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424305290/jobs/7757965481'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424309339/jobs/7757975617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013083833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424304506/jobs/7757964124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013068235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424308186/jobs/7757973144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424300045/jobs/7757952495'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-clean,failure,['https://github.com/ursacomputing/crossbow/runs/12016603710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12017322566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12019480109'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12016535013'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12018604358'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12014793004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12018300807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12018283121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12018270699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12018387569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12016603028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12020473773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12016683347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12016553602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12016586771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12016537807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12018951411'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12017465548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424306369/jobs/7757968366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013104362'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424311732/jobs/7757980801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013078915'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424310362/jobs/7757977656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4424313823/jobs/7757987183', 'https://github.com/ursacomputing/crossbow/actions/runs/4424313823/jobs/7757987012', 'https://github.com/ursacomputing/crossbow/actions/runs/4424313823/jobs/7757986819', 'https://github.com/ursacomputing/crossbow/actions/runs/4424313823/jobs/7757986647']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424301322/jobs/7757956093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4424311251/jobs/7758917461', 'https://github.com/ursacomputing/crossbow/actions/runs/4424311251/jobs/7757980245', 'https://github.com/ursacomputing/crossbow/actions/runs/4424311251/jobs/7757980079', 'https://github.com/ursacomputing/crossbow/actions/runs/4424311251/jobs/7757979886', 'https://github.com/ursacomputing/crossbow/actions/runs/4424311251/jobs/7757979688']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-java-jars,github,{},java-jars/github.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4424312836/jobs/7757983715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424301770/jobs/7757957215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-python-sdist,github,{},python-sdist/github.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7759487375', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7759130338', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7759130205', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7759130068', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7759129949', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7759129825', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7759129554', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7758429433', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7758295850', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7758295713', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7758295567', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7758295415', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7758295222', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7758295025', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7758294832', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7758294650', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7757980416', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7757980259', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7757980095', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7757979931', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7757979746', 'https://github.com/ursacomputing/crossbow/actions/runs/4424306741/jobs/7757969376']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424310798/jobs/7757978561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013081662'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424298431/jobs/7757948380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013108554'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424300960/jobs/7757954944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013099849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4424311109/jobs/7757979338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013085649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424307637/jobs/7757973445'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424304937/jobs/7757964669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424307094/jobs/7757970333'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424313264/jobs/7757985084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424303508/jobs/7757961526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424301143/jobs/7757955647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424309562/jobs/7757976006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424307814/jobs/7757972316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424307404/jobs/7757971405'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-manylinux2014-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4424313632/jobs/7757986156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013063307'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424305791/jobs/7757966901'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013067509'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424312438/jobs/7757982458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013097873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424302117/jobs/7757958249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013066461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424311484/jobs/7757980183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12013104973'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424307455/jobs/7757971371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424303270/jobs/7757961151'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424313015/jobs/7757984347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424309843/jobs/7757976648'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4424314251/jobs/7757987647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-15-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,8732b2785804d3c75c2e7c551ebec5e787214b47
diff --git a/csv_reports/nightly-packaging-2023-03-16-0.csv b/csv_reports/nightly-packaging-2023-03-16-0.csv
deleted file mode 100644
index f063512da3c..00000000000
--- a/csv_reports/nightly-packaging-2023-03-16-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435068945/jobs/7781760466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044140948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435071520/jobs/7781767099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044114985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435075384/jobs/7781776664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044129288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435069845/jobs/7781762828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435073728/jobs/7781772507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044122949'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435075801/jobs/7781777801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044145605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435063263/jobs/7781745315'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435066349/jobs/7781753199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12047527139'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12047568028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12050280663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12050302248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12047042425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12046182453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12045910548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12050092537'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12046048713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12047445584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12049944040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12047773491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12049934183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12048142575'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12047638681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12048777921'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12051031336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-conda-win-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12052198816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435064766/jobs/7781748772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044141639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435073191/jobs/7781771340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044152308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435076082/jobs/7781778353'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4435066523/jobs/7781754306', 'https://github.com/ursacomputing/crossbow/actions/runs/4435066523/jobs/7781754095', 'https://github.com/ursacomputing/crossbow/actions/runs/4435066523/jobs/7781753807', 'https://github.com/ursacomputing/crossbow/actions/runs/4435066523/jobs/7781753569']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435067225/jobs/7781755539'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4435064113/jobs/7782873857', 'https://github.com/ursacomputing/crossbow/actions/runs/4435064113/jobs/7781747847', 'https://github.com/ursacomputing/crossbow/actions/runs/4435064113/jobs/7781747680', 'https://github.com/ursacomputing/crossbow/actions/runs/4435064113/jobs/7781747445', 'https://github.com/ursacomputing/crossbow/actions/runs/4435064113/jobs/7781747114']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-java-jars,github,{},java-jars/github.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4435070904/jobs/7781765344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435074260/jobs/7781774160'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-python-sdist,github,{},python-sdist/github.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782685247', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782685031', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782247881', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782109401', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782109266', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782109158', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782108995', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782108839', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782108691', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782108531', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7782108255', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7781779930', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7781779792', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7781779596', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7781779440', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7781779226', 'https://github.com/ursacomputing/crossbow/actions/runs/4435071092/jobs/7781765976']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435071365/jobs/7781766754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044109356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435070460/jobs/7781764383'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044131657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-ubuntu-jammy-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4435068372/jobs/7781758643'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044126317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4435071756/jobs/7781767893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044148067'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435065026/jobs/7781749373'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435076686/jobs/7781779768'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435062093/jobs/7781742888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435062398/jobs/7781743452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435064346/jobs/7781748215'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435069254/jobs/7781761231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435076295/jobs/7781778893'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435069458/jobs/7781761866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435066194/jobs/7781752442'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435066812/jobs/7781754742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044131296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435065777/jobs/7781751473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044108070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435074057/jobs/7781773414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044152685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435067976/jobs/7781757574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044124475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435076500/jobs/7781779421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12044146512'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4435074432/jobs/7781774533'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4435072617/jobs/7781769710'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435073015/jobs/7781770852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4435072838/jobs/7781770119'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,fe88d9ad5c346786842913c8d2a369db099b5406
-wheel-windows-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4435065986/jobs/7781751895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-16-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,fe88d9ad5c346786842913c8d2a369db099b5406
diff --git a/csv_reports/nightly-packaging-2023-03-17-0.csv b/csv_reports/nightly-packaging-2023-03-17-0.csv
deleted file mode 100644
index 1dd7b2ff0ce..00000000000
--- a/csv_reports/nightly-packaging-2023-03-17-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445675128/jobs/7805072266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074536265'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445673332/jobs/7805067653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074525897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445681674/jobs/7805087888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074533354'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445678620/jobs/7805080356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445668706/jobs/7805057076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074522873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445679150/jobs/7805081706'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074534824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445674422/jobs/7805070502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445682130/jobs/7805089050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12076088120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12077153227'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12077248105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12080901379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12079469525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12078766416'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12078440303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12076265365'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12076032195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12080206735'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12080838715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12079249320'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12077930866'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12078124485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12078080063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12077202369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12077330012'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12077565266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445675514/jobs/7805073283'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074521752'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445675803/jobs/7805073742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074534292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445668071/jobs/7805055693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4445676683/jobs/7805076117', 'https://github.com/ursacomputing/crossbow/actions/runs/4445676683/jobs/7805075954', 'https://github.com/ursacomputing/crossbow/actions/runs/4445676683/jobs/7805075804', 'https://github.com/ursacomputing/crossbow/actions/runs/4445676683/jobs/7805075663']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445670317/jobs/7805060919'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4445675299/jobs/7805937178', 'https://github.com/ursacomputing/crossbow/actions/runs/4445675299/jobs/7805073552', 'https://github.com/ursacomputing/crossbow/actions/runs/4445675299/jobs/7805073078', 'https://github.com/ursacomputing/crossbow/actions/runs/4445675299/jobs/7805072818', 'https://github.com/ursacomputing/crossbow/actions/runs/4445675299/jobs/7805072637']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-java-jars,github,{},java-jars/github.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4445674588/jobs/7805070955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445679791/jobs/7805083205'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-python-sdist,github,{},python-sdist/github.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7806729632', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7806115378', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7806115234', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7806115066', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7806114928', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7806114799', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7806114610', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805397857', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805299741', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805299597', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805299448', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805299311', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805299191', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805299103', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805299006', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805298865', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805075842', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805075722', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805075630', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805075500', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805075336', 'https://github.com/ursacomputing/crossbow/actions/runs/4445671458/jobs/7805063452']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445681354/jobs/7805087038'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074528534'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445674097/jobs/7805069598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074517948'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-ubuntu-jammy-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4445681113/jobs/7805086529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074523278'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4445671723/jobs/7805064212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074513076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445675964/jobs/7805074054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445680725/jobs/7805085699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445668294/jobs/7805056236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445669723/jobs/7805059659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445670534/jobs/7805061351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445670122/jobs/7805060543'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445677891/jobs/7805078635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445669095/jobs/7805058165'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445670826/jobs/7805062130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445677706/jobs/7805078261'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074551657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445673733/jobs/7805068636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074547690'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445679584/jobs/7805082716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074543561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445676330/jobs/7805074852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074537945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4445681999/jobs/7805088776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12074535849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4445680369/jobs/7805084725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4445669414/jobs/7805058943'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4445667855/jobs/7805055371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4445679379/jobs/7805082351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4445669889/jobs/7805060069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-17-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,f9324b79bf4fc1ec7e97b32e3cce16e75ef0f5e3
diff --git a/csv_reports/nightly-packaging-2023-03-18-0.csv b/csv_reports/nightly-packaging-2023-03-18-0.csv
deleted file mode 100644
index dbbe1342502..00000000000
--- a/csv_reports/nightly-packaging-2023-03-18-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454511108/jobs/7823749275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098508116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454514210/jobs/7823754829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098509430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454515392/jobs/7823757224'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098512419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454510907/jobs/7823748957'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454515205/jobs/7823756792'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098511688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454513897/jobs/7823754340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098505677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454511333/jobs/7823749665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454511995/jobs/7823750772'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12098526732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12100202078'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12100484041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12099274125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12099084039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12099011625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12099195633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12099724111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12099622173'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12099354503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12100102849'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12099390762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12099408709'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12099578026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12099529188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12100244376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12099547400'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12100305443'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454515495/jobs/7823757500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098498397'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454518186/jobs/7823762813'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098507636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454515026/jobs/7823756282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4454512255/jobs/7823751447', 'https://github.com/ursacomputing/crossbow/actions/runs/4454512255/jobs/7823751386', 'https://github.com/ursacomputing/crossbow/actions/runs/4454512255/jobs/7823751321', 'https://github.com/ursacomputing/crossbow/actions/runs/4454512255/jobs/7823751226']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454515834/jobs/7823758323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4454513563/jobs/7824109692', 'https://github.com/ursacomputing/crossbow/actions/runs/4454513563/jobs/7823753859', 'https://github.com/ursacomputing/crossbow/actions/runs/4454513563/jobs/7823753805', 'https://github.com/ursacomputing/crossbow/actions/runs/4454513563/jobs/7823753745', 'https://github.com/ursacomputing/crossbow/actions/runs/4454513563/jobs/7823753694']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-java-jars,github,{},java-jars/github.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4454517982/jobs/7823762440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454514594/jobs/7823755450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-python-sdist,github,{},python-sdist/github.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7824076612', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823964351', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823964304', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823964252', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823964188', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823964134', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823964077', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823872499', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823835094', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823835063', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823835014', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823834981', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823834949', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823834911', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823834869', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823834806', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823759514', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823759453', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823759409', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823759368', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823759310', 'https://github.com/ursacomputing/crossbow/actions/runs/4454514322/jobs/7823755051']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454513125/jobs/7823752925'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098497294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454511577/jobs/7823750063'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098508787'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454517694/jobs/7823761835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098507598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4454512825/jobs/7823752379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098511258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454513328/jobs/7823753340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454513689/jobs/7823753942'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454516793/jobs/7823760103'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454515570/jobs/7823757659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454511428/jobs/7823749835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454518353/jobs/7823763156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454515129/jobs/7823756562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454516082/jobs/7823758897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454512582/jobs/7823751834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454513461/jobs/7823753535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098501595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454515723/jobs/7823758061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098504426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454514104/jobs/7823754669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098509771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454512651/jobs/7823751985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098512068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454513797/jobs/7823754176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12098506734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4454512931/jobs/7823752484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4454517460/jobs/7823761351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4454517821/jobs/7823762082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4454510998/jobs/7823749043'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,34af77ef0087b933c12a4616c9179cf298627dbd
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4454516668/jobs/7823759936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-18-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,34af77ef0087b933c12a4616c9179cf298627dbd
diff --git a/csv_reports/nightly-packaging-2023-03-19-0.csv b/csv_reports/nightly-packaging-2023-03-19-0.csv
deleted file mode 100644
index 09c3d2ac690..00000000000
--- a/csv_reports/nightly-packaging-2023-03-19-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459770517/jobs/7832452097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108658032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459772935/jobs/7832456978'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108654485'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459771222/jobs/7832453470'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108652461'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459773675/jobs/7832458492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459772688/jobs/7832456506'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108655118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459769237/jobs/7832449903'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108646593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conan-maximum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4459770347/jobs/7832451721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conan-minimum,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4459771486/jobs/7832453916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12109566918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12109732825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12109875212'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12110562611'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12109542322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12109323956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12109856549'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12110086751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12109400360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12110721080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12110880176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12110781733'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12109622757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12109699489'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12109774954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12109680254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12109783190'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12110830584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459774072/jobs/7832459467'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108653328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459769331/jobs/7832450071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108642716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459769160/jobs/7832449761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4459772072/jobs/7832455397', 'https://github.com/ursacomputing/crossbow/actions/runs/4459772072/jobs/7832455337', 'https://github.com/ursacomputing/crossbow/actions/runs/4459772072/jobs/7832455267', 'https://github.com/ursacomputing/crossbow/actions/runs/4459772072/jobs/7832455215']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459771114/jobs/7832453276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4459769434/jobs/7832863782', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769434/jobs/7832450427', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769434/jobs/7832450380', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769434/jobs/7832450316', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769434/jobs/7832450266']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-java-jars,github,{},java-jars/github.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4459768903/jobs/7832449290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-python-sdist,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4459773463/jobs/7832457988'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-python-sdist,github,{},python-sdist/github.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7834656624', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832778658', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832778598', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832778542', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832778488', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832778420', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832778341', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832596958', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832561581', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832561545', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832561505', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832561458', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832561431', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832561387', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832561333', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832561267', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832454570', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832454528', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832454476', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832454421', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832454336', 'https://github.com/ursacomputing/crossbow/actions/runs/4459769554/jobs/7832450506']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459770747/jobs/7832452479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108649531'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459769052/jobs/7832449605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108655879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459771706/jobs/7832454462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108647541'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4459775230/jobs/7832461790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108642563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459771601/jobs/7832454230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459774590/jobs/7832460701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459768358/jobs/7832448110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459774659/jobs/7832460818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459774142/jobs/7832459636'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459769691/jobs/7832450700'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459774873/jobs/7832461122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459775864/jobs/7832462831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459772444/jobs/7832456047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459774294/jobs/7832459940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108643118'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459774973/jobs/7832461323'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108655718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4459770841/jobs/7832452650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108647253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459769987/jobs/7832451133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108652761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459775289/jobs/7832461909'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12108642134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4459773842/jobs/7832458927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4459772138/jobs/7832455391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4459772361/jobs/7832455923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4459769821/jobs/7832450894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4459773746/jobs/7832458653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-19-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
diff --git a/csv_reports/nightly-packaging-2023-03-20-0.csv b/csv_reports/nightly-packaging-2023-03-20-0.csv
deleted file mode 100644
index 483bb73c592..00000000000
--- a/csv_reports/nightly-packaging-2023-03-20-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466217331/jobs/7844121972'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122601435'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466218185/jobs/7844124110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122598595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466224492/jobs/7844139179'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122600832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466213326/jobs/7844111407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4466225549/jobs/7844141932'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122619967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466224075/jobs/7844138041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122616218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466219584/jobs/7844127272'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466224815/jobs/7844139991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12124383715'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12126943059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12126054220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12126646680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12127497492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12128135339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12124322474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12127360017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12124321345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12126125766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12126488865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12129584122'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12130466895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12129881520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12128242407'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12125657302'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12125729961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12125735028'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466222231/jobs/7844133406'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122619387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466220307/jobs/7844128821'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122614837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466216608/jobs/7844120030'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4466209478/jobs/7844101448', 'https://github.com/ursacomputing/crossbow/actions/runs/4466209478/jobs/7844101289', 'https://github.com/ursacomputing/crossbow/actions/runs/4466209478/jobs/7844101160', 'https://github.com/ursacomputing/crossbow/actions/runs/4466209478/jobs/7844101016']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466211955/jobs/7844110266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4466223281/jobs/7845294139', 'https://github.com/ursacomputing/crossbow/actions/runs/4466223281/jobs/7844136525', 'https://github.com/ursacomputing/crossbow/actions/runs/4466223281/jobs/7844136362', 'https://github.com/ursacomputing/crossbow/actions/runs/4466223281/jobs/7844136186', 'https://github.com/ursacomputing/crossbow/actions/runs/4466223281/jobs/7844136012']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-java-jars,github,{},java-jars/github.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4466216224/jobs/7844118923'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466217792/jobs/7844123023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-python-sdist,github,{},python-sdist/github.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7845085350', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844734983', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844734780', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844734582', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844734385', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844734220', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844734011', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844438154', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844338352', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844338126', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844337955', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844337812', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844337679', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844337475', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844337341', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844337177', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844133883', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844133707', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844133571', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844133434', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844133269', 'https://github.com/ursacomputing/crossbow/actions/runs/4466216811/jobs/7844120610']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466216043/jobs/7844118375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122614010'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466215321/jobs/7844116449'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122591801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466222699/jobs/7844134594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122597235'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4466223361/jobs/7844136184'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122636161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466211275/jobs/7844105448'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466213186/jobs/7844110980'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466213573/jobs/7844112175'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466219123/jobs/7844126304'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466222931/jobs/7844135116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466211520/jobs/7844110277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466223859/jobs/7844137437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466212954/jobs/7844110635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466218414/jobs/7844124626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466215105/jobs/7844115927'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122608936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466220823/jobs/7844130080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122611515'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466222008/jobs/7844132850'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122625607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466212186/jobs/7844110269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122606073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466210379/jobs/7844102906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12122603911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-windows-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4466217589/jobs/7844122478'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4466213975/jobs/7844113348'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4466222461/jobs/7844133958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4466213726/jobs/7844112517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4466221412/jobs/7844131447'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-20-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,85245722531d5a7ee8f5b02c22b722d2ff7e7015
diff --git a/csv_reports/nightly-packaging-2023-03-21-0.csv b/csv_reports/nightly-packaging-2023-03-21-0.csv
deleted file mode 100644
index 96144986854..00000000000
--- a/csv_reports/nightly-packaging-2023-03-21-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477018280/jobs/7868025820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153671784'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477003017/jobs/7867990355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153682727'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4477008933/jobs/7868003905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153673906'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477009217/jobs/7868004424'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477017034/jobs/7868023130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153681513'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477019068/jobs/7868027696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153711639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477016135/jobs/7868021025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477012373/jobs/7868011837'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12160713032'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-linux-aarch64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12153691629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-linux-aarch64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/12153709558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-linux-aarch64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/12153674402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-linux-ppc64le-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12153701867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-linux-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12153692873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-linux-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/12153717852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12163106301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12163055929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-osx-arm64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12153698129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12162429042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-osx-arm64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/12153686820'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-osx-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12153688632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-osx-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/12153690520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-osx-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/12153674790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-win-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12153696588'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-win-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/12153713905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-conda-win-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12153673688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477011089/jobs/7868008762'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153678778'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477015302/jobs/7868018835'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153682040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477015973/jobs/7868020576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4477009600/jobs/7868006045', 'https://github.com/ursacomputing/crossbow/actions/runs/4477009600/jobs/7868005862', 'https://github.com/ursacomputing/crossbow/actions/runs/4477009600/jobs/7868005630', 'https://github.com/ursacomputing/crossbow/actions/runs/4477009600/jobs/7868005452']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477003546/jobs/7867991474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4477014430/jobs/7869140234', 'https://github.com/ursacomputing/crossbow/actions/runs/4477014430/jobs/7868017258', 'https://github.com/ursacomputing/crossbow/actions/runs/4477014430/jobs/7868017081', 'https://github.com/ursacomputing/crossbow/actions/runs/4477014430/jobs/7868016931', 'https://github.com/ursacomputing/crossbow/actions/runs/4477014430/jobs/7868016762']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-java-jars,github,{},java-jars/github.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-nuget,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4477019665/jobs/7868029311'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477013604/jobs/7868014876'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-python-sdist,github,{},python-sdist/github.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7869467277', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868872401', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868872225', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868871993', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868871800', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868871602', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868871398', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868484394', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868365179', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868365028', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868364870', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868364703', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868364530', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868364388', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868364252', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868364076', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868035741', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868035557', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868035404', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868035207', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868035026', 'https://github.com/ursacomputing/crossbow/actions/runs/4477017581/jobs/7868024444']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477012876/jobs/7868013148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153676266'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477014578/jobs/7868017192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153670535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477014237/jobs/7868016277'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153676995'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-ubuntu-kinetic-amd64,pending,['https://github.com/ursacomputing/crossbow/actions/runs/4477013381/jobs/7868014420'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153668631'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477017344/jobs/7868023920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477010680/jobs/7868007674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477007240/jobs/7868000023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477015791/jobs/7868020255'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477011535/jobs/7868010025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477018776/jobs/7868026965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477008014/jobs/7868001786'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477019540/jobs/7868028880'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477016759/jobs/7868022556'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477014798/jobs/7868017613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153683930'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-manylinux2014-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4477013145/jobs/7868014128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153704897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477009817/jobs/7868006025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153669367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477015015/jobs/7868018102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153677992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4477005012/jobs/7867994834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12153713756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4477006969/jobs/7867999366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4477011944/jobs/7868010814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4477005175/jobs/7867995248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4477016359/jobs/7868021514'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4477011274/jobs/7868009240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-21-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,69118b2d26f2fbbbe65ad30dbe167d74b70fe791
diff --git a/csv_reports/nightly-packaging-2023-03-22-0.csv b/csv_reports/nightly-packaging-2023-03-22-0.csv
deleted file mode 100644
index e6cbccb081e..00000000000
--- a/csv_reports/nightly-packaging-2023-03-22-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487888606/jobs/7891822294'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185045998'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487883686/jobs/7891810395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185050156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4487883158/jobs/7891808946'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12185038244'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487883473/jobs/7891809937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487892129/jobs/7891830858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185076647'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487888148/jobs/7891821186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185063480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487878707/jobs/7891799171'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487891493/jobs/7891829525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12191362642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-linux-aarch64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12185047079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-linux-aarch64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/12185059023'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-linux-aarch64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/12185055480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-linux-ppc64le-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12185076828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12194325633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-linux-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/12185059851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-linux-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/12185072863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-linux-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12185060382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-osx-arm64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12185056617'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-osx-arm64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/12185050145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-osx-arm64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/12185074368'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-osx-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12185075934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-osx-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/12185066718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-osx-x64-cpu-r42,pending,['https://github.com/ursacomputing/crossbow/runs/12185041844'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-win-x64-cpu-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12185074075'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-win-x64-cpu-r41,pending,['https://github.com/ursacomputing/crossbow/runs/12185057457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-conda-win-x64-cuda-py3,pending,['https://github.com/ursacomputing/crossbow/runs/12185038402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487883306/jobs/7891809453'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185078191'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487882244/jobs/7891806976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185041421'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487888776/jobs/7891822651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4487886059/jobs/7891816887', 'https://github.com/ursacomputing/crossbow/actions/runs/4487886059/jobs/7891816743', 'https://github.com/ursacomputing/crossbow/actions/runs/4487886059/jobs/7891816599', 'https://github.com/ursacomputing/crossbow/actions/runs/4487886059/jobs/7891816484']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487885840/jobs/7891816124'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4487877561/jobs/7892705125', 'https://github.com/ursacomputing/crossbow/actions/runs/4487877561/jobs/7891797048', 'https://github.com/ursacomputing/crossbow/actions/runs/4487877561/jobs/7891796888', 'https://github.com/ursacomputing/crossbow/actions/runs/4487877561/jobs/7891796691', 'https://github.com/ursacomputing/crossbow/actions/runs/4487877561/jobs/7891796543']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-java-jars,github,{},java-jars/github.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487878861/jobs/7891799546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487878063/jobs/7891797613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-python-sdist,github,{},python-sdist/github.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7893557976', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7892536525', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7892536359', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7892536205', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7892536053', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7892535895', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7892535685', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7891969344', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7891969159', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7891836772', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7891836587', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7891836399', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7891836231', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7891835945', 'https://github.com/ursacomputing/crossbow/actions/runs/4487889084/jobs/7891823544']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487889466/jobs/7891824471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12185064865'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487890321/jobs/7891826841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185061500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487886664/jobs/7891817722'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185045408'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4487887913/jobs/7891820602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185070154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487884067/jobs/7891811433'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487889754/jobs/7891825476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487890430/jobs/7891827125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487880173/jobs/7891802660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487887326/jobs/7891819213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487884776/jobs/7891813419'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487881584/jobs/7891805759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487878518/jobs/7891798696'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487882953/jobs/7891808488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487888403/jobs/7891821738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185077664'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487887155/jobs/7891818812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185042761'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487885519/jobs/7891815326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185060046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487879557/jobs/7891801338'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185062391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487879967/jobs/7891802148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12185056766'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4487891115/jobs/7891828625'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-windows-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4487881336/jobs/7891805081'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4487882702/jobs/7891808000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4487877876/jobs/7891797221'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,928827515bfbd99060d04ccb754646a76a20f7ec
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4487890789/jobs/7891827868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-22-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,928827515bfbd99060d04ccb754646a76a20f7ec
diff --git a/csv_reports/nightly-packaging-2023-03-23-0.csv b/csv_reports/nightly-packaging-2023-03-23-0.csv
deleted file mode 100644
index 8d8e1e0b51c..00000000000
--- a/csv_reports/nightly-packaging-2023-03-23-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498578079/jobs/7915367742'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215865250'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498584032/jobs/7915382137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215882211'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498580302/jobs/7915373267'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215877286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498588683/jobs/7915393532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498583444/jobs/7915381099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215853982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498578698/jobs/7915369085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215840493'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498587826/jobs/7915391231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,caa78981259fc029182e677f13183371822ce410
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498591465/jobs/7915399322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,caa78981259fc029182e677f13183371822ce410
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12217736663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,caa78981259fc029182e677f13183371822ce410
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12219871644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,caa78981259fc029182e677f13183371822ce410
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12218987737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,caa78981259fc029182e677f13183371822ce410
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12221927148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,caa78981259fc029182e677f13183371822ce410
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12221026955'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,caa78981259fc029182e677f13183371822ce410
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12218134751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,caa78981259fc029182e677f13183371822ce410
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12219834832'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,caa78981259fc029182e677f13183371822ce410
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12217544566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,caa78981259fc029182e677f13183371822ce410
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12217673291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,caa78981259fc029182e677f13183371822ce410
-conda-osx-arm64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12215975475'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,caa78981259fc029182e677f13183371822ce410
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12222257180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,caa78981259fc029182e677f13183371822ce410
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12219161452'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,caa78981259fc029182e677f13183371822ce410
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12219523504'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,caa78981259fc029182e677f13183371822ce410
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12220074843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,caa78981259fc029182e677f13183371822ce410
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12221294482'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,caa78981259fc029182e677f13183371822ce410
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12220077555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,caa78981259fc029182e677f13183371822ce410
-conda-win-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12220405528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,caa78981259fc029182e677f13183371822ce410
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12222866192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,caa78981259fc029182e677f13183371822ce410
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498581961/jobs/7915377484'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215834712'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498593178/jobs/7915403117'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215835615'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498589540/jobs/7915395284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,caa78981259fc029182e677f13183371822ce410
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4498589117/jobs/7915395189', 'https://github.com/ursacomputing/crossbow/actions/runs/4498589117/jobs/7915395029', 'https://github.com/ursacomputing/crossbow/actions/runs/4498589117/jobs/7915394811', 'https://github.com/ursacomputing/crossbow/actions/runs/4498589117/jobs/7915394576']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,caa78981259fc029182e677f13183371822ce410
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498583296/jobs/7915380659'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,caa78981259fc029182e677f13183371822ce410
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4498577535/jobs/7916554550', 'https://github.com/ursacomputing/crossbow/actions/runs/4498577535/jobs/7915367134', 'https://github.com/ursacomputing/crossbow/actions/runs/4498577535/jobs/7915366906', 'https://github.com/ursacomputing/crossbow/actions/runs/4498577535/jobs/7915366749', 'https://github.com/ursacomputing/crossbow/actions/runs/4498577535/jobs/7915366576']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-java-jars,github,{},java-jars/github.yml,caa78981259fc029182e677f13183371822ce410
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498581431/jobs/7915375934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,caa78981259fc029182e677f13183371822ce410
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498592040/jobs/7915400553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-python-sdist,github,{},python-sdist/github.yml,caa78981259fc029182e677f13183371822ce410
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7916671882', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915998356', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915998144', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915997929', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915997724', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915997506', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915997221', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915699952', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915590848', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915590713', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915590600', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915590490', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915590373', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915590243', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915590069', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915589880', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915403481', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915403276', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915403084', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915402915', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915402708', 'https://github.com/ursacomputing/crossbow/actions/runs/4498588229/jobs/7915392403']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,caa78981259fc029182e677f13183371822ce410
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498586013/jobs/7915386384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215832938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498581789/jobs/7915376871'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215880380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498591035/jobs/7915398396'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215853388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4498583746/jobs/7915381576'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215844613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498580982/jobs/7915375041'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498591722/jobs/7915399858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498590485/jobs/7915397238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498577812/jobs/7915367170'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498584905/jobs/7915384335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498592513/jobs/7915401634'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498577352/jobs/7915366271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498582720/jobs/7915379423'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498579626/jobs/7915371529'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498589741/jobs/7915395678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215876090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498587610/jobs/7915390608'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215872724'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498588041/jobs/7915391847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215871213'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498587326/jobs/7915389802'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215846040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498586664/jobs/7915388016'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12215850897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,caa78981259fc029182e677f13183371822ce410
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4498584475/jobs/7915383231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,caa78981259fc029182e677f13183371822ce410
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4498586836/jobs/7915388609'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,caa78981259fc029182e677f13183371822ce410
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4498580792/jobs/7915374462'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,caa78981259fc029182e677f13183371822ce410
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4498576570/jobs/7915364503'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,caa78981259fc029182e677f13183371822ce410
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4498590066/jobs/7915396376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-23-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,caa78981259fc029182e677f13183371822ce410
diff --git a/csv_reports/nightly-packaging-2023-03-24-0.csv b/csv_reports/nightly-packaging-2023-03-24-0.csv
deleted file mode 100644
index 028bb863f1d..00000000000
--- a/csv_reports/nightly-packaging-2023-03-24-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509269516/jobs/7938830976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246601026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509270009/jobs/7938832288'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246618834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509275151/jobs/7938843522'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246625153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509277581/jobs/7938849218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509277481/jobs/7938848951'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246625552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4509280439/jobs/7938855751'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246637559'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509275597/jobs/7938844437'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509280679/jobs/7938856259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12246668496'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12249503713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12249866602'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12250374678'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12252922983'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12251013954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12248213121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12251573665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12248743245'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12249636474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12250115613'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12249960964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12253865665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12249959852'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12249767351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12253972070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12252937776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12251213890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509279962/jobs/7938854763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246597965'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509269280/jobs/7938830491'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246631466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4509271872/jobs/7938836544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4509270534/jobs/7938834186', 'https://github.com/ursacomputing/crossbow/actions/runs/4509270534/jobs/7938834003', 'https://github.com/ursacomputing/crossbow/actions/runs/4509270534/jobs/7938833676', 'https://github.com/ursacomputing/crossbow/actions/runs/4509270534/jobs/7938833525']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509265555/jobs/7938823011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4509272907/jobs/7939886535', 'https://github.com/ursacomputing/crossbow/actions/runs/4509272907/jobs/7938839481', 'https://github.com/ursacomputing/crossbow/actions/runs/4509272907/jobs/7938839192', 'https://github.com/ursacomputing/crossbow/actions/runs/4509272907/jobs/7938839051', 'https://github.com/ursacomputing/crossbow/actions/runs/4509272907/jobs/7938838935']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-java-jars,github,{},java-jars/github.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509275862/jobs/7938845027'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509268839/jobs/7938829610'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-python-sdist,github,{},python-sdist/github.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7940011794', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939472902', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939472748', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939472590', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939472429', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939472274', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939472079', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939124462', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939023866', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939023720', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939023589', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939023457', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939023337', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939023153', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939022960', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7939022802', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7938851319', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7938851150', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7938850875', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7938850611', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7938850297', 'https://github.com/ursacomputing/crossbow/actions/runs/4509273951/jobs/7938841354']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-ubuntu-bionic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509278567/jobs/7938851553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-ubuntu-bionic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246599367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509268525/jobs/7938828911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246628477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509271595/jobs/7938836017'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246638621'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4509278339/jobs/7938851108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246615538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509273154/jobs/7938839388'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509265732/jobs/7938823259'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509277232/jobs/7938848460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509268258/jobs/7938828463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509279054/jobs/7938852898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509267505/jobs/7938827006'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509271114/jobs/7938834961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509267945/jobs/7938827900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509269129/jobs/7938830340'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509272437/jobs/7938837912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246616087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509280216/jobs/7938855182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246629316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509279225/jobs/7938853217'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246627985'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509273752/jobs/7938840723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246596188'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4509276356/jobs/7938846189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12246639233'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4509272096/jobs/7938837050'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4509279739/jobs/7938854317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4509276121/jobs/7938845584'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4509266644/jobs/7938825303'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4509270880/jobs/7938834457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-24-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,0977cd2b726fecc8cb0b9206f012960bfd68a5d0
diff --git a/csv_reports/nightly-packaging-2023-03-25-0.csv b/csv_reports/nightly-packaging-2023-03-25-0.csv
deleted file mode 100644
index d668d28871f..00000000000
--- a/csv_reports/nightly-packaging-2023-03-25-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518363576/jobs/7958191699'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271545779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518360679/jobs/7958186258'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271542644'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4518357593/jobs/7958180632'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12271535223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518360357/jobs/7958185744'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518362342/jobs/7958189777'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271535068'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518361610/jobs/7958188154'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271532711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518361977/jobs/7958189135'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518364202/jobs/7958193177'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12271561861'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12273195947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12272332070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12272346004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12272091003'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12272203685'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12272805829'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12272904093'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12271626199'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12272406732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12272551296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12272425869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12273289360'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12273121525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12272650564'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12272973734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12272952912'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12273340116'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518356547/jobs/7958179252'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271547322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518361781/jobs/7958188674'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271539291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4518364509/jobs/7958194142'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4518356390/jobs/7958179020', 'https://github.com/ursacomputing/crossbow/actions/runs/4518356390/jobs/7958178929', 'https://github.com/ursacomputing/crossbow/actions/runs/4518356390/jobs/7958178835', 'https://github.com/ursacomputing/crossbow/actions/runs/4518356390/jobs/7958178781']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518359433/jobs/7958184279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4518359554/jobs/7958491352', 'https://github.com/ursacomputing/crossbow/actions/runs/4518359554/jobs/7958184716', 'https://github.com/ursacomputing/crossbow/actions/runs/4518359554/jobs/7958184612', 'https://github.com/ursacomputing/crossbow/actions/runs/4518359554/jobs/7958184541', 'https://github.com/ursacomputing/crossbow/actions/runs/4518359554/jobs/7958184465']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-java-jars,github,{},java-jars/github.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518357967/jobs/7958181322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518357145/jobs/7958179773'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-python-sdist,github,{},python-sdist/github.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958589999', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958401649', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958401589', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958401539', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958401486', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958401424', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958401342', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958302826', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958268324', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958268277', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958268238', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958268196', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958268151', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958268102', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958268049', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958267994', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958185123', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958185055', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958184967', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958184883', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958184744', 'https://github.com/ursacomputing/crossbow/actions/runs/4518357877/jobs/7958181136']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4518360535/jobs/7958186039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12271541234'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518358794/jobs/7958183376'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271535807'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518359291/jobs/7958184073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271543628'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518362963/jobs/7958190676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271542456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518358516/jobs/7958182790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518363939/jobs/7958192497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518363873/jobs/7958192426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518363128/jobs/7958190974'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518358278/jobs/7958182200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518359069/jobs/7958183757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518364384/jobs/7958193809'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518358924/jobs/7958183545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518363699/jobs/7958191937'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518359770/jobs/7958184847'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271543157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518364277/jobs/7958193395'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271536624'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518362504/jobs/7958189991'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271532394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518361851/jobs/7958188848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271533180'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4518362794/jobs/7958190418'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12271541271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4518357743/jobs/7958180825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4518358042/jobs/7958181718'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4518364446/jobs/7958193996'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4518364211/jobs/7958193182'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4518361547/jobs/7958188102'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-25-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,a18382c168abfb7e0552e6eee2b7d7be41f557c1
diff --git a/csv_reports/nightly-packaging-2023-03-26-0.csv b/csv_reports/nightly-packaging-2023-03-26-0.csv
deleted file mode 100644
index 3f484176e31..00000000000
--- a/csv_reports/nightly-packaging-2023-03-26-0.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523672915/jobs/7966978029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281779815'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523670574/jobs/7966973962'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281772585'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4523673915/jobs/7966980446'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12281771526'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523671537/jobs/7966976641'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523674588/jobs/7966981555'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281774869'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523674228/jobs/7966981011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281776346'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523676704/jobs/7966985218'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523669063/jobs/7966970834'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12282658344'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12283015238'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12282942739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12282636756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12282579897'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12282332500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12282480808'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12282365536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12281888192'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12282637066'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-osx-arm64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12283512994'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12283600593'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12283660858'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12283371846'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12283449956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12282763328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12283011898'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12283706114'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523671229/jobs/7966975369'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281779986'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523671328/jobs/7966975479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281776073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4523676196/jobs/7966983936'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4523673696/jobs/7966980070', 'https://github.com/ursacomputing/crossbow/actions/runs/4523673696/jobs/7966980013', 'https://github.com/ursacomputing/crossbow/actions/runs/4523673696/jobs/7966979974', 'https://github.com/ursacomputing/crossbow/actions/runs/4523673696/jobs/7966979917']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523676940/jobs/7966985886'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4523672479/jobs/7967386207', 'https://github.com/ursacomputing/crossbow/actions/runs/4523672479/jobs/7966977456', 'https://github.com/ursacomputing/crossbow/actions/runs/4523672479/jobs/7966977389', 'https://github.com/ursacomputing/crossbow/actions/runs/4523672479/jobs/7966977322', 'https://github.com/ursacomputing/crossbow/actions/runs/4523672479/jobs/7966977241']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-java-jars,github,{},java-jars/github.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523673780/jobs/7966980134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523675797/jobs/7966983319'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-python-sdist,github,{},python-sdist/github.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7967418160', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7967124669', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7967124601', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7967124546', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7967124499', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7967124433', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7967124369', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7967042763', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7967042727', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7966990677', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7966990634', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7966990573', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7966990518', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7966990434', 'https://github.com/ursacomputing/crossbow/actions/runs/4523676776/jobs/7966985501']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-ubuntu-bionic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4523673191/jobs/7966978570'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-ubuntu-bionic-amd64,github,"{'target': 'ubuntu-bionic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-ubuntu-bionic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12281767276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-ubuntu-bionic-arm64,travis,"{'target': 'ubuntu-bionic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523676905/jobs/7966985790'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281780391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523674026/jobs/7966980676'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281778739'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523670358/jobs/7966973402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281778918'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523670253/jobs/7966973090'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523676828/jobs/7966985603'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523670989/jobs/7966974882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523670413/jobs/7966973550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523670721/jobs/7966974301'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523676310/jobs/7966984249'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523671783/jobs/7966976183'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523675620/jobs/7966983069'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523670752/jobs/7966974391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523676490/jobs/7966984720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281775635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523670048/jobs/7966972590'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281784064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523677053/jobs/7966986174'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281782703'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-manylinux2014-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4523672120/jobs/7966976684'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281768763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523669755/jobs/7966971911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12281778284'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4523670711/jobs/7966974291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4523674963/jobs/7966982054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-windows-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4523670509/jobs/7966973825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4523671067/jobs/7966975053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4523670828/jobs/7966974563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-26-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,9d0bce65a08e0507a816ca4ed3faa912b7956eca
diff --git a/csv_reports/nightly-packaging-2023-03-28-0.csv b/csv_reports/nightly-packaging-2023-03-28-0.csv
deleted file mode 100644
index 589e0126081..00000000000
--- a/csv_reports/nightly-packaging-2023-03-28-0.csv
+++ /dev/null
@@ -1,74 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4540999779/jobs/8002610638'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12327078169'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541012089/jobs/8002640110'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12327065465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4541004953/jobs/8002623280'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12327089607'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541013698/jobs/8002643841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541001531/jobs/8002614828'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12327058009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541015059/jobs/8002647172'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12327061134'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541013291/jobs/8002643162'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541013590/jobs/8002643604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12327148298'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12330276552'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12331477604'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12335296108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12334314947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12329800743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12332632044'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12329089097'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12327421148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12330447580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12334322176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12330836822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12333656474'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12332770468'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12330965157'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12331329487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12330632799'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12331320377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541008676/jobs/8002631940'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12327060291'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541007626/jobs/8002629465'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12327105572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4541002543/jobs/8002617231'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4541005950/jobs/8002626071', 'https://github.com/ursacomputing/crossbow/actions/runs/4541005950/jobs/8002625829', 'https://github.com/ursacomputing/crossbow/actions/runs/4541005950/jobs/8002625604', 'https://github.com/ursacomputing/crossbow/actions/runs/4541005950/jobs/8002625395']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541001063/jobs/8002613451'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4541003442/jobs/8003687670', 'https://github.com/ursacomputing/crossbow/actions/runs/4541003442/jobs/8002620358', 'https://github.com/ursacomputing/crossbow/actions/runs/4541003442/jobs/8002620124', 'https://github.com/ursacomputing/crossbow/actions/runs/4541003442/jobs/8002619875', 'https://github.com/ursacomputing/crossbow/actions/runs/4541003442/jobs/8002619660']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-java-jars,github,{},java-jars/github.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541003217/jobs/8002619009'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541011105/jobs/8002637723'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-python-sdist,github,{},python-sdist/github.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8003786832', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8003426046', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8003425907', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8003425674', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8003425477', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8003425255', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8003425001', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8003035990', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002913648', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002913454', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002913254', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002913094', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002912921', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002912676', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002912473', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002912211', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002631209', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002630978', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002630733', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002630516', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002630252', 'https://github.com/ursacomputing/crossbow/actions/runs/4541001838/jobs/8002615418']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541012576/jobs/8002641230'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12327100916'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4541008349/jobs/8002631271'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12327067548'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4540997940/jobs/8002606341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12327053553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-clean,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4541001342/jobs/8002614472'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-clean,github,{},python-wheels/github.clean.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541014300/jobs/8002645293'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541006847/jobs/8002627525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4540998745/jobs/8002607819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541002999/jobs/8002618633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541007261/jobs/8002628497'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541014800/jobs/8002646524'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541012390/jobs/8002640720'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541002357/jobs/8002616646'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541014530/jobs/8002645824'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541009635/jobs/8002634384'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12327059530'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541005704/jobs/8002624798'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12327086665'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541004607/jobs/8002622581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-manylinux2014-cp37-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12327054236'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541016646/jobs/8002651562'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-manylinux2014-cp38-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12327083039'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541016066/jobs/8002650099'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-manylinux2014-cp39-arm64,failure,['https://github.com/ursacomputing/crossbow/runs/12327093883'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4540999457/jobs/8002609356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4541004302/jobs/8002621856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4541010409/jobs/8002635982'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-windows-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4541012784/jobs/8002641856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4541009997/jobs/8002635133'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-28-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,ca18e6f7862ab7a51347a00ab8ae48cd51aca68b
diff --git a/csv_reports/nightly-packaging-2023-03-29-0.csv b/csv_reports/nightly-packaging-2023-03-29-0.csv
deleted file mode 100644
index b7555c8d4ce..00000000000
--- a/csv_reports/nightly-packaging-2023-03-29-0.csv
+++ /dev/null
@@ -1,74 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551955811/jobs/8026675775'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358707126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551951481/jobs/8026664895'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358738693'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551955122/jobs/8026674100'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358743286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551939255/jobs/8026635011'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551949943/jobs/8026661225'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358723123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551949376/jobs/8026659785'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358744546'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551945458/jobs/8026649511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551945978/jobs/8026650477'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12358789305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12362920627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12363160037'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12363519466'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12364701136'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12360516521'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12360750630'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12360974426'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12364438558'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12364513378'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12364760825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12366208500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12362563034'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12362413082'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12366700663'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12362516838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12363146701'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12362624840'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551944586/jobs/8026647257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358727888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551950401/jobs/8026662300'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358742176'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4551943264/jobs/8026644511'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4551950179/jobs/8026662531', 'https://github.com/ursacomputing/crossbow/actions/runs/4551950179/jobs/8026662324', 'https://github.com/ursacomputing/crossbow/actions/runs/4551950179/jobs/8026662124', 'https://github.com/ursacomputing/crossbow/actions/runs/4551950179/jobs/8026661908']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551951190/jobs/8026664296'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4551956963/jobs/8027746222', 'https://github.com/ursacomputing/crossbow/actions/runs/4551956963/jobs/8026679233', 'https://github.com/ursacomputing/crossbow/actions/runs/4551956963/jobs/8026679028', 'https://github.com/ursacomputing/crossbow/actions/runs/4551956963/jobs/8026678835', 'https://github.com/ursacomputing/crossbow/actions/runs/4551956963/jobs/8026678613']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-java-jars,github,{},java-jars/github.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551946459/jobs/8026651600'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551942289/jobs/8026642128'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-python-sdist,github,{},python-sdist/github.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8027714135', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8027238136', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8027237822', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8027237595', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8027237430', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8027237261', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8027237008', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8027061092', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026920502', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026920285', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026920052', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026919806', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026919589', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026919362', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026919154', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026918910', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026653407', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026653139', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026652882', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026652709', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026652435', 'https://github.com/ursacomputing/crossbow/actions/runs/4551941182/jobs/8026639570']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551956057/jobs/8026676286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358752501'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551950664/jobs/8026662905'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358710571'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551946163/jobs/8026651000'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358740694'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-clean,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4551949492/jobs/8026660004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-clean,github,{},python-wheels/github.clean.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551944882/jobs/8026647956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551946722/jobs/8026652382'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551954316/jobs/8026672189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551952753/jobs/8026668148'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551940923/jobs/8026638868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551955615/jobs/8026675253'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551945644/jobs/8026649812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551947476/jobs/8026654232'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551942526/jobs/8026642771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551945114/jobs/8026648605'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358729825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551956751/jobs/8026678084'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358712305'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551944182/jobs/8026646716'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358701458'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551940730/jobs/8026638279'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358753024'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4551942869/jobs/8026643661'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12358755129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4551954580/jobs/8026672833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4551953823/jobs/8026671155'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4551939495/jobs/8026635251'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4551947916/jobs/8026655356'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4551950958/jobs/8026663655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-29-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,2c9340dd1795bedcc6a43975e26580b4f27912ad
diff --git a/csv_reports/nightly-packaging-2023-03-30-0.csv b/csv_reports/nightly-packaging-2023-03-30-0.csv
deleted file mode 100644
index f34fcee40f6..00000000000
--- a/csv_reports/nightly-packaging-2023-03-30-0.csv
+++ /dev/null
@@ -1,74 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562309690/jobs/8049347226'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-almalinux-8-amd64,github,"{'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388933926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-almalinux-8-arm64,travis,"{'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562306772/jobs/8049340633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-almalinux-9-amd64,github,"{'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388936223'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-almalinux-9-arm64,travis,"{'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562323542/jobs/8049381071'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-amazon-linux-2-amd64,github,"{'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388969106'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-amazon-linux-2-arm64,travis,"{'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562318072/jobs/8049368351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-centos-7-amd64,github,"{'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562324768/jobs/8049384944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-centos-8-stream-amd64,github,"{'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388962553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-centos-8-stream-arm64,travis,"{'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562319525/jobs/8049371814'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-centos-9-stream-amd64,github,"{'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388957875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-centos-9-stream-arm64,travis,"{'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562317842/jobs/8049367803'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562312404/jobs/8049354345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12389026572'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12396704178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12391992838'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12391856018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12393355341'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12391191018'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12390952026'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12392911430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12390796737'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12396409711'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12396623064'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12392693890'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12392663014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12393154391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12392686492'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12393770476'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12396241343'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12394489825'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562320664/jobs/8049374080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-debian-bookworm-amd64,github,"{'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388980956'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-debian-bookworm-arm64,travis,"{'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562313967/jobs/8049357823'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-debian-bullseye-amd64,github,"{'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388949290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-debian-bullseye-arm64,travis,"{'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4562322444/jobs/8049378121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4562318751/jobs/8049370743', 'https://github.com/ursacomputing/crossbow/actions/runs/4562318751/jobs/8049370527', 'https://github.com/ursacomputing/crossbow/actions/runs/4562318751/jobs/8049370276', 'https://github.com/ursacomputing/crossbow/actions/runs/4562318751/jobs/8049370106']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562318978/jobs/8049370656'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-java-jars,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4562314229/jobs/8050543864', 'https://github.com/ursacomputing/crossbow/actions/runs/4562314229/jobs/8049359052', 'https://github.com/ursacomputing/crossbow/actions/runs/4562314229/jobs/8049358771', 'https://github.com/ursacomputing/crossbow/actions/runs/4562314229/jobs/8049358542', 'https://github.com/ursacomputing/crossbow/actions/runs/4562314229/jobs/8049358288']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-java-jars,github,{},java-jars/github.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562318488/jobs/8049369457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562316458/jobs/8049364121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-python-sdist,github,{},python-sdist/github.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8050533863', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8050137690', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8050137515', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8050137352', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8050137156', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8050137039', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8050136751', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049774986', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049618153', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049617997', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049617831', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049617635', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049617466', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049617336', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049617148', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049616862', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049373432', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049373225', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049373012', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049372822', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049372569', 'https://github.com/ursacomputing/crossbow/actions/runs/4562315306/jobs/8049361092']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562324211/jobs/8049383104'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-ubuntu-focal-amd64,github,"{'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388970532'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-ubuntu-focal-arm64,travis,"{'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-ubuntu-jammy-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562310889/jobs/8049350432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-ubuntu-jammy-amd64,github,"{'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388941863'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-ubuntu-jammy-arm64,travis,"{'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-ubuntu-kinetic-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562323282/jobs/8049380328'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-ubuntu-kinetic-amd64,github,"{'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388980390'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-ubuntu-kinetic-arm64,travis,"{'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-clean,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4562311967/jobs/8049353325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-clean,github,{},python-wheels/github.clean.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562307977/jobs/8049343339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562321050/jobs/8049374947'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562311134/jobs/8049351014'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562324409/jobs/8049383810'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562317175/jobs/8049365868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562325219/jobs/8049386200'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562320093/jobs/8049373040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562307629/jobs/8049342598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562323033/jobs/8049379601'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562313702/jobs/8049357047'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388937928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562316615/jobs/8049364704'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388929220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562313357/jobs/8049356367'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388973997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562321865/jobs/8049376827'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388951317'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4562309466/jobs/8049346798'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12388923490'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4562307318/jobs/8049341791'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4562306390/jobs/8049340072'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4562316940/jobs/8049365292'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4562311509/jobs/8049352371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4562321710/jobs/8049376535'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-30-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,ddd0a337174e57cdc80b1ee30dc7e787acfc09f6
diff --git a/csv_reports/nightly-packaging-2023-03-31-0.csv b/csv_reports/nightly-packaging-2023-03-31-0.csv
deleted file mode 100644
index e39b72d81e4..00000000000
--- a/csv_reports/nightly-packaging-2023-03-31-0.csv
+++ /dev/null
@@ -1,74 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573157597/jobs/8073248430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-almalinux-8-amd64,github,"{'architecture': 'amd64', 'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573163432/jobs/8073261256'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-almalinux-8-arm64,github,"{'architecture': 'arm64', 'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573169795/jobs/8073275992'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-almalinux-9-amd64,github,"{'architecture': 'amd64', 'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573171346/jobs/8073279438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-almalinux-9-arm64,github,"{'architecture': 'arm64', 'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573165286/jobs/8073265287'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-amazon-linux-2-amd64,github,"{'architecture': 'amd64', 'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4573169059/jobs/8073274053'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-amazon-linux-2-arm64,github,"{'architecture': 'arm64', 'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573170488/jobs/8073277653'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-centos-7-amd64,github,"{'architecture': 'amd64', 'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573155753/jobs/8073244120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-centos-8-stream-amd64,github,"{'architecture': 'amd64', 'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573164669/jobs/8073263830'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-centos-8-stream-arm64,github,"{'architecture': 'arm64', 'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573158910/jobs/8073251432'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-centos-9-stream-amd64,github,"{'architecture': 'amd64', 'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4573171437/jobs/8073279688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-centos-9-stream-arm64,github,"{'architecture': 'arm64', 'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573160834/jobs/8073255759'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573166405/jobs/8073267756'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12423461473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12422543626'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12423762878'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12422938417'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12422463655'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12422152769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12422361553'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12425068036'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12424441856'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12422843380'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12423311123'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12426770831'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12425712460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12425338498'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12423464240'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12425951731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12426606473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,68dc40a10bc752d8b577f57976873d087714d486
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12423363092'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,68dc40a10bc752d8b577f57976873d087714d486
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573162955/jobs/8073260147'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-debian-bookworm-amd64,github,"{'architecture': 'amd64', 'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573158707/jobs/8073250894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-debian-bookworm-arm64,github,"{'architecture': 'arm64', 'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573157017/jobs/8073246981'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-debian-bullseye-amd64,github,"{'architecture': 'amd64', 'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573157341/jobs/8073247769'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-debian-bullseye-arm64,github,"{'architecture': 'arm64', 'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4573159094/jobs/8073251873'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,68dc40a10bc752d8b577f57976873d087714d486
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4573163189/jobs/8075413910', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163189/jobs/8075413755', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163189/jobs/8075413645', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163189/jobs/8075413456']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,68dc40a10bc752d8b577f57976873d087714d486
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573159356/jobs/8073254040'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,68dc40a10bc752d8b577f57976873d087714d486
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4573156706/jobs/8074267403', 'https://github.com/ursacomputing/crossbow/actions/runs/4573156706/jobs/8073246901', 'https://github.com/ursacomputing/crossbow/actions/runs/4573156706/jobs/8073246756', 'https://github.com/ursacomputing/crossbow/actions/runs/4573156706/jobs/8073246620', 'https://github.com/ursacomputing/crossbow/actions/runs/4573156706/jobs/8073246436']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-java-jars,github,{},java-jars/github.yml,68dc40a10bc752d8b577f57976873d087714d486
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573154806/jobs/8073242137'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573161951/jobs/8073258085'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-python-sdist,github,{},python-sdist/github.yml,68dc40a10bc752d8b577f57976873d087714d486
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8075201882', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074691976', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074691531', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074691415', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074691297', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074691154', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074691060', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074690933', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074690810', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074690698', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074690575', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074690480', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074690376', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074690277', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074690125', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074690008', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074689745', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074689600', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074689470', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074689369', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074689254', 'https://github.com/ursacomputing/crossbow/actions/runs/4573163605/jobs/8074689067']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,68dc40a10bc752d8b577f57976873d087714d486
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573164845/jobs/8073264282'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-ubuntu-focal-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573160371/jobs/8073254629'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-ubuntu-focal-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-ubuntu-jammy-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4573157818/jobs/8073248894'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-ubuntu-jammy-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573161781/jobs/8073257681'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-ubuntu-jammy-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4573161559/jobs/8073257189'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-ubuntu-kinetic-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573162212/jobs/8073258561'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-ubuntu-kinetic-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-clean,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4573168810/jobs/8073273460'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-clean,github,{},python-wheels/github.clean.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573155939/jobs/8073244488'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573170890/jobs/8073278642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573168201/jobs/8073272149'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573169287/jobs/8073274565'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573158493/jobs/8073250386'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573155301/jobs/8073242934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573166990/jobs/8073269076'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573165733/jobs/8073266306'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573161093/jobs/8073256241'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573167392/jobs/8073269979'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12419994920'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573168446/jobs/8073272574'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12420033944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573161293/jobs/8073256713'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12420023254'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573162785/jobs/8073259563'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12420036440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4573167788/jobs/8073270944'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12420015868'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4573160058/jobs/8073253953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4573165513/jobs/8073265818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4573167183/jobs/8073269517'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4573167571/jobs/8073270438'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,68dc40a10bc752d8b577f57976873d087714d486
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4573158110/jobs/8073249425'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-03-31-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,68dc40a10bc752d8b577f57976873d087714d486
diff --git a/csv_reports/nightly-packaging-2023-04-01-0.csv b/csv_reports/nightly-packaging-2023-04-01-0.csv
deleted file mode 100644
index 3e86368f515..00000000000
--- a/csv_reports/nightly-packaging-2023-04-01-0.csv
+++ /dev/null
@@ -1,74 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582247259/jobs/8092345401'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-almalinux-8-amd64,github,"{'architecture': 'amd64', 'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-almalinux-8-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582244739/jobs/8092341269'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-almalinux-8-arm64,github,"{'architecture': 'arm64', 'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-almalinux-9-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582250962/jobs/8092353045'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-almalinux-9-amd64,github,"{'architecture': 'amd64', 'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-almalinux-9-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582247860/jobs/8092347239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-almalinux-9-arm64,github,"{'architecture': 'arm64', 'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-amazon-linux-2-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582247198/jobs/8092345186'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-amazon-linux-2-amd64,github,"{'architecture': 'amd64', 'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-amazon-linux-2-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582250919/jobs/8092352885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-amazon-linux-2-arm64,github,"{'architecture': 'arm64', 'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-centos-7-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582245056/jobs/8092341738'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-centos-7-amd64,github,"{'architecture': 'amd64', 'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-centos-8-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582245506/jobs/8092342480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-centos-8-stream-amd64,github,"{'architecture': 'amd64', 'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-centos-8-stream-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582250430/jobs/8092351248'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-centos-8-stream-arm64,github,"{'architecture': 'arm64', 'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-centos-9-stream-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582246030/jobs/8092343145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-centos-9-stream-amd64,github,"{'architecture': 'amd64', 'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-centos-9-stream-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582244930/jobs/8092341567'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-centos-9-stream-arm64,github,"{'architecture': 'arm64', 'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582248641/jobs/8092348295'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582246563/jobs/8092343958'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12444523161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12445284080'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12446152841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12445301551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12445688260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12446168731'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12445028551'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12445109885'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12445783062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12445425695'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12445460928'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12445629410'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12446134391'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12445426345'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12445449073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12446684734'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-win-x64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12445559332'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12446845677'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-debian-bookworm-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582251367/jobs/8092353819'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-debian-bookworm-amd64,github,"{'architecture': 'amd64', 'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-debian-bookworm-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582244424/jobs/8092340688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-debian-bookworm-arm64,github,"{'architecture': 'arm64', 'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-debian-bullseye-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582243918/jobs/8092339015'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-debian-bullseye-amd64,github,"{'architecture': 'amd64', 'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-debian-bullseye-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582247920/jobs/8092347322'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-debian-bullseye-arm64,github,"{'architecture': 'arm64', 'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4582248094/jobs/8092347598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-homebrew-r-autobrew,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4582250833/jobs/8092352546', 'https://github.com/ursacomputing/crossbow/actions/runs/4582250833/jobs/8092352509', 'https://github.com/ursacomputing/crossbow/actions/runs/4582250833/jobs/8092352461', 'https://github.com/ursacomputing/crossbow/actions/runs/4582250833/jobs/8092352412']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582249814/jobs/8092349953'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4582247612/jobs/8092694326', 'https://github.com/ursacomputing/crossbow/actions/runs/4582247612/jobs/8092346678', 'https://github.com/ursacomputing/crossbow/actions/runs/4582247612/jobs/8092346632', 'https://github.com/ursacomputing/crossbow/actions/runs/4582247612/jobs/8092346586', 'https://github.com/ursacomputing/crossbow/actions/runs/4582247612/jobs/8092346545']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-java-jars,github,{},java-jars/github.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582251064/jobs/8092353337'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582247356/jobs/8092345698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-python-sdist,github,{},python-sdist/github.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-r-binary-packages,success,"['https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092762210', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092494775', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092494740', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092494705', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092494663', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092494620', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092494558', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092458374', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092423926', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092423892', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092423845', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092423807', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092423762', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092423729', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092423694', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092423649', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092355658', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092355491', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092355408', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092355336', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092355238', 'https://github.com/ursacomputing/crossbow/actions/runs/4582249417/jobs/8092349386']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-ubuntu-focal-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582250784/jobs/8092352325'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-ubuntu-focal-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-ubuntu-focal-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582248529/jobs/8092348161'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-ubuntu-focal-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-ubuntu-jammy-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4582244839/jobs/8092341440'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-ubuntu-jammy-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-ubuntu-jammy-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582244494/jobs/8092340812'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-ubuntu-jammy-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-ubuntu-kinetic-amd64,error,['https://github.com/ursacomputing/crossbow/actions/runs/4582247647/jobs/8092346633'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-ubuntu-kinetic-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-ubuntu-kinetic-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582246414/jobs/8092343692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-ubuntu-kinetic-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-clean,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4582247997/jobs/8092347457'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-clean,github,{},python-wheels/github.clean.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582249044/jobs/8092348875'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582244320/jobs/8092340273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582246152/jobs/8092343316'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582248832/jobs/8092348544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582251222/jobs/8092353595'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582251126/jobs/8092353441'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582248356/jobs/8092347914'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582246723/jobs/8092344220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582246924/jobs/8092344545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582247719/jobs/8092346822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12444493525'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582247802/jobs/8092347054'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12444505806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582250545/jobs/8092351538'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12444494776'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582244275/jobs/8092340056'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12444504649'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4582249244/jobs/8092349105'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12444491486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4582243569/jobs/8092338363'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4582243715/jobs/8092338528'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4582243813/jobs/8092338719'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4582244242/jobs/8092339911'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4582247540/jobs/8092346290'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-01-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,7e19111f2f81a4c0a8b3465f04a6b9f3ba4a06f1
diff --git a/csv_reports/nightly-packaging-2023-04-02-0.csv b/csv_reports/nightly-packaging-2023-04-02-0.csv
deleted file mode 100644
index 3da73020059..00000000000
--- a/csv_reports/nightly-packaging-2023-04-02-0.csv
+++ /dev/null
@@ -1,74 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587777401/jobs/8101526680'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-almalinux-8-amd64,github,"{'architecture': 'amd64', 'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587782975/jobs/8101537577'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-almalinux-8-arm64,github,"{'architecture': 'arm64', 'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587781021/jobs/8101534121'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-almalinux-9-amd64,github,"{'architecture': 'amd64', 'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587781287/jobs/8101534660'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-almalinux-9-arm64,github,"{'architecture': 'arm64', 'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587786178/jobs/8101544129'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-amazon-linux-2-amd64,github,"{'architecture': 'amd64', 'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587782248/jobs/8101536594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-amazon-linux-2-arm64,github,"{'architecture': 'arm64', 'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-centos-7-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587783620/jobs/8101538806'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-centos-7-amd64,github,"{'architecture': 'amd64', 'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587778668/jobs/8101529141'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-centos-8-stream-amd64,github,"{'architecture': 'amd64', 'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587778402/jobs/8101528692'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-centos-8-stream-arm64,github,"{'architecture': 'arm64', 'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587782498/jobs/8101536882'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-centos-9-stream-amd64,github,"{'architecture': 'amd64', 'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587784693/jobs/8101541375'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-centos-9-stream-arm64,github,"{'architecture': 'arm64', 'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587782832/jobs/8101537347'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587784428/jobs/8101540757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12455266450'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12456112126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12456128463'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12456242545'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12457059487'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12456009051'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12456997220'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12455916859'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12455749059'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12456630961'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12457122473'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12456298550'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12457352581'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12457099725'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12456245954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12456739074'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-win-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12456626502'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12457059818'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587779890/jobs/8101531387'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-debian-bookworm-amd64,github,"{'architecture': 'amd64', 'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587783998/jobs/8101539779'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-debian-bookworm-arm64,github,"{'architecture': 'arm64', 'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587784967/jobs/8101541926'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-debian-bullseye-amd64,github,"{'architecture': 'amd64', 'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587783315/jobs/8101538130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-debian-bullseye-arm64,github,"{'architecture': 'arm64', 'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-homebrew-cpp,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587781423/jobs/8101534879'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4587781777/jobs/8101535867', 'https://github.com/ursacomputing/crossbow/actions/runs/4587781777/jobs/8101535797', 'https://github.com/ursacomputing/crossbow/actions/runs/4587781777/jobs/8101535743', 'https://github.com/ursacomputing/crossbow/actions/runs/4587781777/jobs/8101535679']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587780376/jobs/8101532351'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4587784612/jobs/8101902427', 'https://github.com/ursacomputing/crossbow/actions/runs/4587784612/jobs/8101541373', 'https://github.com/ursacomputing/crossbow/actions/runs/4587784612/jobs/8101541303', 'https://github.com/ursacomputing/crossbow/actions/runs/4587784612/jobs/8101541246', 'https://github.com/ursacomputing/crossbow/actions/runs/4587784612/jobs/8101541167']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-java-jars,github,{},java-jars/github.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587785045/jobs/8101542111'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587778506/jobs/8101528884'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-python-sdist,github,{},python-sdist/github.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101942014', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101679838', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101679813', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101679789', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101679773', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101679734', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101679697', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101657603', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101612436', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101612377', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101612339', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101612290', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101612245', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101612204', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101612167', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101612104', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101536814', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101536748', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101536678', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101536615', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101536532', 'https://github.com/ursacomputing/crossbow/actions/runs/4587779700/jobs/8101531075']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587784132/jobs/8101540079'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-ubuntu-focal-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587777692/jobs/8101527371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-ubuntu-focal-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587780559/jobs/8101532954'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-ubuntu-jammy-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587778606/jobs/8101529029'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-ubuntu-jammy-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587779257/jobs/8101530178'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-ubuntu-kinetic-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587785242/jobs/8101542505'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-ubuntu-kinetic-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-clean,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587784310/jobs/8101540480'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-clean,github,{},python-wheels/github.clean.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587785151/jobs/8101542326'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587777321/jobs/8101526566'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587777614/jobs/8101527202'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587786016/jobs/8101543872'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587784794/jobs/8101541612'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587783893/jobs/8101539520'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587777973/jobs/8101527899'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587777565/jobs/8101527046'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587785513/jobs/8101542964'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587781870/jobs/8101535843'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-manylinux2014-cp310-amd64,github,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12455242125'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-travis-wheel-manylinux2014-cp310-arm64,travis,"{'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587785892/jobs/8101543627'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-manylinux2014-cp311-amd64,github,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12455244635'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-travis-wheel-manylinux2014-cp311-arm64,travis,"{'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587783710/jobs/8101539062'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-manylinux2014-cp37-amd64,github,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12455247697'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-travis-wheel-manylinux2014-cp37-arm64,travis,"{'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587781677/jobs/8101535379'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-manylinux2014-cp38-amd64,github,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12455248308'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-travis-wheel-manylinux2014-cp38-arm64,travis,"{'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4587778304/jobs/8101528507'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-manylinux2014-cp39-amd64,github,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.amd64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/runs/12455239698'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-travis-wheel-manylinux2014-cp39-arm64,travis,"{'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/travis.linux.arm64.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587778957/jobs/8101529651'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587778800/jobs/8101529372'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587778103/jobs/8101528120'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587784486/jobs/8101540902'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,adf33cc430101d1d6878b546e1473431ca5f280c
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4587783142/jobs/8101537841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-02-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,adf33cc430101d1d6878b546e1473431ca5f280c
diff --git a/csv_reports/nightly-packaging-2023-04-03-0.csv b/csv_reports/nightly-packaging-2023-04-03-0.csv
deleted file mode 100644
index c276eafd111..00000000000
--- a/csv_reports/nightly-packaging-2023-04-03-0.csv
+++ /dev/null
@@ -1,74 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594598362/jobs/8113821207'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-almalinux-8-amd64,github,"{'architecture': 'amd64', 'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594588240/jobs/8113797732'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-almalinux-8-arm64,github,"{'architecture': 'arm64', 'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594587470/jobs/8113796239'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-almalinux-9-amd64,github,"{'architecture': 'amd64', 'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594600323/jobs/8113825276'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-almalinux-9-arm64,github,"{'architecture': 'arm64', 'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594595330/jobs/8113814187'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-amazon-linux-2-amd64,github,"{'architecture': 'amd64', 'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594602240/jobs/8113829394'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-amazon-linux-2-arm64,github,"{'architecture': 'arm64', 'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-centos-7-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594603813/jobs/8113832275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-centos-7-amd64,github,"{'architecture': 'amd64', 'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594589726/jobs/8113800867'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-centos-8-stream-amd64,github,"{'architecture': 'amd64', 'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594593346/jobs/8113809257'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-centos-8-stream-arm64,github,"{'architecture': 'arm64', 'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594601943/jobs/8113828816'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-centos-9-stream-amd64,github,"{'architecture': 'amd64', 'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594600714/jobs/8113826061'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-centos-9-stream-arm64,github,"{'architecture': 'arm64', 'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594594707/jobs/8113812721'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594598609/jobs/8113821755'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12472935639'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12472867126'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12473002107'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12476388355'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12472168929'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12472484743'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12472157336'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12474815672'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12471737833'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12475208841'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12475865366'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12473438748'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12475524675'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12473643763'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12477260594'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12473258975'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-win-x64-cpu-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-win-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12476751967'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-win-x64-cpu-r41,azure,"{'config': 'win_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'win_64_'}",conda-recipes/azure.win.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-conda-win-x64-cuda-py3,success,['https://github.com/ursacomputing/crossbow/runs/12473572569'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-azure-conda-win-x64-cuda-py3,azure,{'config': 'win_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.win.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-debian-bookworm-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594591329/jobs/8113804642'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-debian-bookworm-amd64,github,"{'architecture': 'amd64', 'target': 'debian-bookworm', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-debian-bookworm-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594601541/jobs/8113827934'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-debian-bookworm-arm64,github,"{'architecture': 'arm64', 'target': 'debian-bookworm-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-debian-bullseye-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594585779/jobs/8113792144'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-debian-bullseye-amd64,github,"{'architecture': 'amd64', 'target': 'debian-bullseye', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-debian-bullseye-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594584412/jobs/8113789101'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-debian-bullseye-arm64,github,"{'architecture': 'arm64', 'target': 'debian-bullseye-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-homebrew-cpp,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594590007/jobs/8113801479'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-homebrew-cpp,github,{'formula': 'apache-arrow.rb'},homebrew-formulae/github.macos.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-homebrew-r-autobrew,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4594597930/jobs/8113820656', 'https://github.com/ursacomputing/crossbow/actions/runs/4594597930/jobs/8113820491', 'https://github.com/ursacomputing/crossbow/actions/runs/4594597930/jobs/8113820330', 'https://github.com/ursacomputing/crossbow/actions/runs/4594597930/jobs/8113820138']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-homebrew-r-autobrew,github,{},r/github.macos.autobrew.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-homebrew-r-brew,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594586317/jobs/8113793599'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-homebrew-r-brew,github,{'formula': 'apache-arrow.rb'},r/github.macos.brew.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-java-jars,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4594602597/jobs/8115037320', 'https://github.com/ursacomputing/crossbow/actions/runs/4594602597/jobs/8113830603', 'https://github.com/ursacomputing/crossbow/actions/runs/4594602597/jobs/8113830438', 'https://github.com/ursacomputing/crossbow/actions/runs/4594602597/jobs/8113830221', 'https://github.com/ursacomputing/crossbow/actions/runs/4594602597/jobs/8113830056']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-java-jars,github,{},java-jars/github.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-nuget,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594587265/jobs/8113795637'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-nuget,github,{'run': 'ubuntu-csharp'},nuget-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-python-sdist,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594596918/jobs/8113817747'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-python-sdist,github,{},python-sdist/github.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-r-binary-packages,failure,"['https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8115053211', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114308473', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114308308', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114308095', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114307825', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114307630', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114307356', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114197035', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114045763', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114045600', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114045463', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114045320', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114045161', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114044994', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114044854', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8114044696', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8113821198', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8113821039', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8113820871', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8113820700', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8113820426', 'https://github.com/ursacomputing/crossbow/actions/runs/4594593051/jobs/8113808575']",https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-r-binary-packages,github,{'custom_version': 'Unset'},r/github.packages.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-ubuntu-focal-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594588966/jobs/8113799598'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-ubuntu-focal-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-focal', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-ubuntu-focal-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594589512/jobs/8113800544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-ubuntu-focal-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-focal-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-ubuntu-jammy-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594593748/jobs/8113810339'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-ubuntu-jammy-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-jammy', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-ubuntu-jammy-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594596574/jobs/8113816938'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-ubuntu-jammy-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-jammy-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-ubuntu-kinetic-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594590183/jobs/8113801822'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-ubuntu-kinetic-amd64,github,"{'architecture': 'amd64', 'target': 'ubuntu-kinetic', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-ubuntu-kinetic-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594596112/jobs/8113815945'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-ubuntu-kinetic-arm64,github,"{'architecture': 'arm64', 'target': 'ubuntu-kinetic-arm64', 'task_namespace': 'apt', 'upload_extensions': ['.ddeb', '.deb', '.debian.tar.xz', '.dsc', '.orig.tar.gz']}",linux-packages/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-clean,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594586773/jobs/8113794414'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-clean,github,{},python-wheels/github.clean.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-macos-big-sur-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594599404/jobs/8113824156'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-macos-big-sur-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-macos-big-sur-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594587058/jobs/8113795145'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-macos-big-sur-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-macos-big-sur-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594603235/jobs/8113831281'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-macos-big-sur-cp38-arm64,github,"{'arch': 'arm64', 'arrow_simd_level': 'DEFAULT', 'python_version': '3.8', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-macos-big-sur-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594594530/jobs/8113812352'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-macos-big-sur-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'macos_deployment_target': '11.0'}",python-wheels/github.osx.arm64.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-macos-mojave-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594590996/jobs/8113803771'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-macos-mojave-cp310-amd64,github,"{'python_version': '3.10', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-macos-mojave-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594593575/jobs/8113809848'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-macos-mojave-cp311-amd64,github,"{'python_version': '3.11', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-macos-mojave-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594584251/jobs/8113788736'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-macos-mojave-cp37-amd64,github,"{'python_version': '3.7', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-macos-mojave-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594601008/jobs/8113826669'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-macos-mojave-cp38-amd64,github,"{'python_version': '3.8', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-macos-mojave-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594592888/jobs/8113808153'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-macos-mojave-cp39-amd64,github,"{'python_version': '3.9', 'macos_deployment_target': '10.14'}",python-wheels/github.osx.amd64.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-manylinux2014-cp310-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594594846/jobs/8113813108'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-manylinux2014-cp310-amd64,github,"{'arch': 'amd64', 'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-manylinux2014-cp310-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594588512/jobs/8113798486'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-manylinux2014-cp310-arm64,github,"{'arch': 'arm64', 'python_version': '3.10', 'manylinux_version': '2014'}",python-wheels/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-manylinux2014-cp311-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594585316/jobs/8113790900'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-manylinux2014-cp311-amd64,github,"{'arch': 'amd64', 'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-manylinux2014-cp311-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594588029/jobs/8113797260'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-manylinux2014-cp311-arm64,github,"{'arch': 'arm64', 'python_version': '3.11', 'manylinux_version': '2014'}",python-wheels/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-manylinux2014-cp37-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594595612/jobs/8113814757'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-manylinux2014-cp37-amd64,github,"{'arch': 'amd64', 'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-manylinux2014-cp37-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594592299/jobs/8113806801'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-manylinux2014-cp37-arm64,github,"{'arch': 'arm64', 'python_version': '3.7', 'manylinux_version': '2014'}",python-wheels/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-manylinux2014-cp38-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594588726/jobs/8113798887'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-manylinux2014-cp38-amd64,github,"{'arch': 'amd64', 'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-manylinux2014-cp38-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594601180/jobs/8113827130'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-manylinux2014-cp38-arm64,github,"{'arch': 'arm64', 'python_version': '3.8', 'manylinux_version': '2014'}",python-wheels/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-manylinux2014-cp39-amd64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594601714/jobs/8113828377'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-manylinux2014-cp39-amd64,github,"{'arch': 'amd64', 'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-manylinux2014-cp39-arm64,success,['https://github.com/ursacomputing/crossbow/actions/runs/4594603568/jobs/8113831851'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-manylinux2014-cp39-arm64,github,"{'arch': 'arm64', 'python_version': '3.9', 'manylinux_version': '2014'}",python-wheels/github.linux.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-windows-cp310-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594594153/jobs/8113811500'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-windows-cp310-amd64,github,{'python_version': '3.10'},python-wheels/github.windows.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-windows-cp311-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594598859/jobs/8113822275'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-windows-cp311-amd64,github,{'python_version': '3.11'},python-wheels/github.windows.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-windows-cp37-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594586596/jobs/8113793976'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-windows-cp37-amd64,github,{'python_version': '3.7'},python-wheels/github.windows.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-windows-cp38-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594585521/jobs/8113791456'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-windows-cp38-amd64,github,{'python_version': '3.8'},python-wheels/github.windows.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
-wheel-windows-cp39-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4594595295/jobs/8113814087'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-03-0-github-wheel-windows-cp39-amd64,github,{'python_version': '3.9'},python-wheels/github.windows.yml,34addbb5e169af368fa3df3e0b668c6a9403fd0f
diff --git a/csv_reports/nightly-packaging-2023-04-06-0.csv b/csv_reports/nightly-packaging-2023-04-06-0.csv
deleted file mode 100644
index 0b7db4b9a52..00000000000
--- a/csv_reports/nightly-packaging-2023-04-06-0.csv
+++ /dev/null
@@ -1,74 +0,0 @@
-task_name,task_status,build_links,crossbow_branch_url,ci_system,extra_params,template,arrow_commit
-almalinux-8-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627022402/jobs/8184440070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-almalinux-8-amd64,github,"{'architecture': 'amd64', 'target': 'almalinux-8', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-almalinux-8-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627037887/jobs/8184474939'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-almalinux-8-arm64,github,"{'architecture': 'arm64', 'target': 'almalinux-8-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-almalinux-9-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627029704/jobs/8184456754'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-almalinux-9-amd64,github,"{'architecture': 'amd64', 'target': 'almalinux-9', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-almalinux-9-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627037530/jobs/8184474073'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-almalinux-9-arm64,github,"{'architecture': 'arm64', 'target': 'almalinux-9-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-amazon-linux-2-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627035398/jobs/8184469688'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-amazon-linux-2-amd64,github,"{'architecture': 'amd64', 'target': 'amazon-linux-2', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-amazon-linux-2-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627028664/jobs/8184454580'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-amazon-linux-2-arm64,github,"{'architecture': 'arm64', 'target': 'amazon-linux-2-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-centos-7-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627026987/jobs/8184450430'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-centos-7-amd64,github,"{'architecture': 'amd64', 'target': 'centos-7', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-centos-8-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627025400/jobs/8184446657'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-centos-8-stream-amd64,github,"{'architecture': 'amd64', 'target': 'centos-8-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-centos-8-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627022852/jobs/8184440888'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-centos-8-stream-arm64,github,"{'architecture': 'arm64', 'target': 'centos-8-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-centos-9-stream-amd64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627030683/jobs/8184459042'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-centos-9-stream-amd64,github,"{'architecture': 'amd64', 'target': 'centos-9-stream', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-centos-9-stream-arm64,failure,['https://github.com/ursacomputing/crossbow/actions/runs/4627031184/jobs/8184460273'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-centos-9-stream-arm64,github,"{'architecture': 'arm64', 'target': 'centos-9-stream-aarch64', 'task_namespace': 'yum', 'upload_extensions': ['.rpm']}",linux-packages/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conan-maximum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4627035664/jobs/8184469987'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-conan-maximum,github,"{'flags': '-e ARROW_CONAN_PARQUET=True -e ARROW_CONAN_WITH_BROTLI=True -e ARROW_CONAN_WITH_BZ2=True -e ARROW_CONAN_WITH_FLIGHT_RPC=True -e ARROW_CONAN_WITH_GLOG=True -e ARROW_CONAN_WITH_JEMALLOC=True -e ARROW_CONAN_WITH_JSON=True -e ARROW_CONAN_WITH_LZ4=True -e ARROW_CONAN_WITH_SNAPPY=True -e ARROW_CONAN_WITH_ZSTD=True', 'image': 'conan'}",docker-tests/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conan-minimum,success,['https://github.com/ursacomputing/crossbow/actions/runs/4627030286/jobs/8184458113'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-github-conan-minimum,github,{'image': 'conan'},docker-tests/github.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-clean,success,['https://github.com/ursacomputing/crossbow/runs/12561742070'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-clean,azure,{},conda-recipes/azure.clean.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-linux-aarch64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12564875286'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-linux-aarch64-cpu-py3,azure,{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-linux-aarch64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12564773004'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-linux-aarch64-cpu-r41,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.1'}",conda-recipes/azure.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-linux-aarch64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12564414025'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-linux-aarch64-cpu-r42,azure,"{'config': 'linux_aarch64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_aarch64_r_base4.2'}",conda-recipes/azure.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-linux-ppc64le-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12567683471'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-linux-ppc64le-cpu-py3,azure,{'config': 'linux_ppc64le_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-linux-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12566180285'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-linux-x64-cpu-py3,azure,{'config': 'linux_64_cuda_compiler_versionNoneopenssl3'},conda-recipes/azure.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-linux-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12567031650'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-linux-x64-cpu-r41,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.1'}",conda-recipes/azure.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-linux-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12565866997'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-linux-x64-cpu-r42,azure,"{'config': 'linux_64_cuda_compiler_versionNoneopenssl3', 'r_config': 'linux_64_r_base4.2'}",conda-recipes/azure.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-linux-x64-cuda-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12566548371'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-linux-x64-cuda-py3,azure,{'config': 'linux_64_cuda_compiler_version10.2openssl3'},conda-recipes/azure.linux.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-osx-arm64-cpu-py3,success,['https://github.com/ursacomputing/crossbow/runs/12564632195'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-osx-arm64-cpu-py3,azure,{'config': 'osx_arm64_openssl3'},conda-recipes/azure.osx.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-osx-arm64-cpu-r41,success,['https://github.com/ursacomputing/crossbow/runs/12564982510'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-osx-arm64-cpu-r41,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.1'}",conda-recipes/azure.osx.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-osx-arm64-cpu-r42,success,['https://github.com/ursacomputing/crossbow/runs/12568293536'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-osx-arm64-cpu-r42,azure,"{'config': 'osx_arm64_openssl3', 'r_config': 'osx_arm64_r_base4.2'}",conda-recipes/azure.osx.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-osx-x64-cpu-py3,failure,['https://github.com/ursacomputing/crossbow/runs/12564922402'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-osx-x64-cpu-py3,azure,{'config': 'osx_64_openssl3'},conda-recipes/azure.osx.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-osx-x64-cpu-r41,failure,['https://github.com/ursacomputing/crossbow/runs/12564986544'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-osx-x64-cpu-r41,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.1'}",conda-recipes/azure.osx.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-osx-x64-cpu-r42,failure,['https://github.com/ursacomputing/crossbow/runs/12564995335'],https://github.com/ursacomputing/crossbow/tree/nightly-packaging-2023-04-06-0-azure-conda-osx-x64-cpu-r42,azure,"{'config': 'osx_64_openssl3', 'r_config': 'osx_64_r_base4.2'}",conda-recipes/azure.osx.yml,1c19650afff13c04d8eaaba824a47e3b861b754d
-conda-win-x64-cpu-py3,success,['https://github.com/ursacomputing/cr